Files
Firebird_2D/FireBird2D.Interfaces/Interfaces/IGame.cs
T
2025-04-22 20:19:35 +02:00

15 lines
272 B
C#

using Firebird2D.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Firebird2D.Interfaces
{
public interface IGame
{
public IEventBus EventBus { get; set; }
}
}