13 lines
280 B
C++
13 lines
280 B
C++
#ifndef TICK_ADVANCED_EVENT_H
|
|
#define TICK_ADVANCED_EVENT_H
|
|
|
|
#include "Event.h"
|
|
|
|
// Fired when the simulation tick advances. Carries no payload — subscribers
|
|
// re-read Simulation::getCurrentTick().
|
|
class TickAdvancedEvent : public Event
|
|
{
|
|
};
|
|
|
|
#endif // TICK_ADVANCED_EVENT_H
|