16 lines
184 B
OpenEdge ABL
16 lines
184 B
OpenEdge ABL
%module Region
|
|
%{
|
|
#define SWIG_DAVID
|
|
#include "Region.h"
|
|
%}
|
|
|
|
%extend PolyVox::Region {
|
|
STR()
|
|
};
|
|
|
|
%ignore depth;
|
|
%ignore height;
|
|
%ignore width;
|
|
%ignore dimensions;
|
|
|
|
%include "Region.h" |