22 lines
548 B
C#
22 lines
548 B
C#
using KoogleApp.Store.Game.Menus;
|
|
|
|
namespace KoogleApp.Games.Training
|
|
{
|
|
public class GameTraining : IKnownGame
|
|
{
|
|
public string Name => "Training";
|
|
|
|
public Type SetupComponentType => typeof(Setup);
|
|
|
|
public Type GameServiceType => typeof(GameTrainingService);
|
|
|
|
public Type BoardComponentType => typeof(BoardTraining);
|
|
|
|
public Type SetupModelType => typeof(TrainingSetupState);
|
|
|
|
public Type GameModelType => typeof(TrainingGameModel);
|
|
|
|
public MenuAction[] MenuActions => [ ];
|
|
}
|
|
}
|