Rework group methods, fix warnings and fix typos

This commit is contained in:
Rochet2
2015-06-22 01:02:26 +03:00
parent 51d6454f04
commit 85cd8e1900
7 changed files with 187 additions and 62 deletions

View File

@@ -31,16 +31,16 @@ private:
struct Binding
{
uint64 id;
int functionReference;
uint32 remainingShots;
lua_State* L;
uint32 remainingShots;
int functionReference;
Binding(lua_State* L, uint64 id, int functionReference, uint32 remainingShots) :
L(L),
id(id),
functionReference(functionReference),
remainingShots(remainingShots)
{}
L(L),
remainingShots(remainingShots),
functionReference(functionReference)
{ }
~Binding()
{