mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
8 lines
156 B
C#
8 lines
156 B
C#
namespace Game.Events
|
|
{
|
|
/// <summary>
|
|
/// Common base class for all events in the game.
|
|
/// </summary>
|
|
public abstract record Event();
|
|
}
|