From b44b06c1af8c5a08570a99c917f36cdb9730619d Mon Sep 17 00:00:00 2001 From: David Williams Date: Fri, 25 Jun 2010 22:28:20 +0000 Subject: [PATCH] Added missing dummy file. --- library/PolyVoxUtil/source/Dummy.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 library/PolyVoxUtil/source/Dummy.cpp 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