Interface IGameEvent
- All Known Implementing Classes:
AbstractGameEvent
public interface IGameEvent
Represents a generic interface for in-game events within the AirshipCraft calendar system.
Implementations of this interface should define the specific actions to be performed
when an event is triggered.
- Since:
- 2024-01-04
- Version:
- 1.0.0
- Author:
- notzune
-
Method Summary
Modifier and TypeMethodDescriptionvoid
trigger()
Triggers the specific action or series of actions associated with this game event.
-
Method Details
-
trigger
void trigger()Triggers the specific action or series of actions associated with this game event. Implementing classes should define the behavior of this method to execute event-specific logic.
-