Files
2025-08-15 10:44:29 +02:00

21 lines
443 B
C#

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