diff --git a/library/PolyVoxUtil/source/Dummy.cpp b/library/PolyVoxUtil/source/Dummy.cpp new file mode 100644 index 00000000..867430db --- /dev/null +++ b/library/PolyVoxUtil/source/Dummy.cpp @@ -0,0 +1,16 @@ +#include "PolyVoxImpl/TypeDef.h" + +namespace PolyVox +{ + class POLYVOXCORE_API DummyClass + { + public: + int getx(void); + int x; + }; + + int DummyClass::getx(void) + { + return x; + } +} \ No newline at end of file