mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
Rework group methods, fix warnings and fix typos
This commit is contained in:
12
BindingMap.h
12
BindingMap.h
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user