Extremely basic first go at SWIG bindings

Only Enums.h is wrapped so far and I haven't tested it
For now I will focus on Python but Java and C# will be useful too
This commit is contained in:
Matt Williams
2009-03-27 18:54:20 +00:00
parent fc7cf98347
commit 27b17cf348
3 changed files with 24 additions and 0 deletions

6
library/bindings/Enums.i Normal file
View File

@ -0,0 +1,6 @@
%module Enums
%{
#include "PolyVoxCore/Enums.h"
%}
enum NormalGenerationMethod;