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; } } }