using System.Collections.Generic;
///
///
///
///
///
///
///
///
///
namespace BurnOutSharp.FileType
{
public class MSCABLZX
{
///
/// The window size determines the number of window subdivisions, or position slots
///
public static readonly Dictionary PositionSlots = new Dictionary()
{
[128 * 1024] = 34, // 128 KB
[256 * 1024] = 36, // 256 KB
[512 * 1024] = 38, // 512 KB
[1024 * 1024] = 42, // 1 MB
[2 * 1024 * 1024] = 50, // 2 MB
[4 * 1024 * 1024] = 66, // 4 MB
[8 * 1024 * 1024] = 98, // 8 MB
[16 * 1024 * 1024] = 162, // 16 MB
[32 * 1024 * 1024] = 290, // 32 MB
};
}
}