Matt Williams 58355da40b A few more tiny steps in the right direction
Getting templates to work is the next thing
2009-03-28 13:08:29 +00:00

11 lines
185 B
OpenEdge ABL

%module Vector
%{
#include "PolyVoxCore/Vector.h"
%}
%include "PolyVoxCore/Vector.h"
%template(VectorTest) PolyVox::Vector<3,float>;
%rename(assign) VectorTest::operator=;