blob: 367f66cccf3ceb3f7814a07163f011ca6318efcc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "Globals.h"
#include "ChunkDef.h"
// It appears that failing to have this definition causes link errors as cChunkDef::Height is not
// defined. It also appears that we can have the initalizer in the declaration so it can be inlined
// if the declaration is in a class????
const int cChunkDef::Height;
|