Files
basic-computer-games/17_Bullfight/csharp/Events/Event.cs
2022-01-17 09:07:59 +02:00

8 lines
156 B
C#

namespace Game.Events
{
/// <summary>
/// Common base class for all events in the game.
/// </summary>
public abstract record Event();
}