mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 21:11:39 +00:00
Added names for arguments in DStaticEventHandler class definition
This commit is contained in:
parent
e654a99d39
commit
83c513b6c9
1 changed files with 7 additions and 7 deletions
14
src/events.h
14
src/events.h
|
@ -138,13 +138,13 @@ public:
|
|||
//
|
||||
void WorldLoaded();
|
||||
void WorldUnloaded();
|
||||
void WorldThingSpawned(AActor*);
|
||||
void WorldThingDied(AActor*, AActor*);
|
||||
void WorldThingRevived(AActor*);
|
||||
void WorldThingDamaged(AActor*, AActor*, AActor*, int, FName, int, DAngle);
|
||||
void WorldThingDestroyed(AActor*);
|
||||
void WorldLinePreActivated(line_t*, AActor*, bool*);
|
||||
void WorldLineActivated(line_t*, AActor*);
|
||||
void WorldThingSpawned(AActor* actor);
|
||||
void WorldThingDied(AActor* actor, AActor* inflictor);
|
||||
void WorldThingRevived(AActor* actor);
|
||||
void WorldThingDamaged(AActor* actor, AActor* inflictor, AActor* source, int damage, FName mod, int flags, DAngle angle);
|
||||
void WorldThingDestroyed(AActor* actor);
|
||||
void WorldLinePreActivated(line_t* line, AActor* actor, bool* shouldactivate);
|
||||
void WorldLineActivated(line_t* line, AActor* actor);
|
||||
void WorldLightning();
|
||||
void WorldTick();
|
||||
|
||||
|
|
Loading…
Reference in a new issue