1 %module ContactCache 2 3 %{ 4 #include <gdx/collision/ContactCache.h> 5 %} 6 7 %feature("director") ContactCache; 8 9 %javamethodmodifiers ContactCache::ContactCache "private"; 10 11 %typemap(javacode) ContactCache %{ 12 public ContactCache() { 13 this(false); 14 enable(); 15 } 16 %} 17 18 %include "gdx/collision/ContactCache.h" 19 20