From 142f7e1cdf74cd419495772cdbce86101a57c087 Mon Sep 17 00:00:00 2001 From: morkt Date: Wed, 12 Aug 2015 01:29:00 +0400 Subject: [PATCH] (Crc32.Table): public property. --- GameRes/Utility.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GameRes/Utility.cs b/GameRes/Utility.cs index f2d53fcb..b0e8bcfd 100644 --- a/GameRes/Utility.cs +++ b/GameRes/Utility.cs @@ -198,6 +198,8 @@ namespace GameRes.Utility /* Table of CRCs of all 8-bit messages. */ private static readonly uint[] crc_table = InitializeTable(); + public static uint[] Table { get { return crc_table; } } + /* Make the table for a fast CRC. */ private static uint[] InitializeTable () {