You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
588 B
11 lines
588 B
public static class QConstants
|
|
{
|
|
public const int MaxQPath = 64; // Should correspond to MAX_QPATH
|
|
public const int MaxMapHulls = 4; // Should correspond to MAX_MAP_HULLS
|
|
public const int MaxSkins = 32; // Should correspond to MAX_SKINS
|
|
public const int MaxDLights = 64; // Should correspond to MAX_DLIGHTS
|
|
public const int MaxLightmaps = 4; // Should correspond to MAXLIGHTMAPS
|
|
|
|
public const int LightmapBlockWidth = 256; // Should correspond to LMBLOCK_WIDTH
|
|
public const int LightmapBlockHeight = 256; // Should correspond to LMBLOCK_HEIGHT
|
|
}
|