using Firebird2D.DataypesAndInterfaces.Interfaces; 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; } public IKeyMapper? KeyMapper { get; set; } public IExtensionBase GetExtension(string extensionName); } }