Files
basic-computer-games/17_Bullfight/csharp/Events/Event.cs
T

8 lines
156 B
C#

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