Added missing dummy file.

This commit is contained in:
David Williams 2010-06-25 22:28:20 +00:00
parent 254fa3329e
commit b44b06c1af

View File

@ -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;
}
}