mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 13:47:58 +03:00
Added numArgs parameter
This commit is contained in:
parent
007a7681eb
commit
b68992e55e
2 changed files with 3 additions and 3 deletions
|
@ -29,8 +29,8 @@ CLASS_DECLARATION(Event, AnimationEvent, NULL) {
|
|||
{NULL, NULL}
|
||||
};
|
||||
|
||||
AnimationEvent::AnimationEvent(str command)
|
||||
: Event(command)
|
||||
AnimationEvent::AnimationEvent(str command, int numArgs)
|
||||
: Event(command, numArgs)
|
||||
{
|
||||
anim_number = 0;
|
||||
anim_frame = 0;
|
||||
|
|
|
@ -35,7 +35,7 @@ public:
|
|||
void *operator new(size_t size);
|
||||
void operator delete(void *ptr);
|
||||
|
||||
AnimationEvent(str command);
|
||||
AnimationEvent(str command, int numArgs = 0);
|
||||
AnimationEvent(const Event& ev);
|
||||
AnimationEvent();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue