diff options
Diffstat (limited to 'lib/sol2/examples/interop/tolua/source/Player.pkg')
-rw-r--r-- | lib/sol2/examples/interop/tolua/source/Player.pkg | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/sol2/examples/interop/tolua/source/Player.pkg b/lib/sol2/examples/interop/tolua/source/Player.pkg new file mode 100644 index 0000000..e6c3fab --- /dev/null +++ b/lib/sol2/examples/interop/tolua/source/Player.pkg @@ -0,0 +1,8 @@ +$#include "Player.h" + +class Player { + Player(); + ~Player(); + void setHealth(int _health); + int getHealth(); +}; |