|
namespace GeometryTD.UI
|
|
{
|
|
public class MenuFormUseCase : IUIUseCase
|
|
{
|
|
public MenuFormRawData CreateInitialModel()
|
|
{
|
|
return new MenuFormRawData
|
|
{
|
|
TitleText = "GeometryTD",
|
|
StartButtonText = "Start",
|
|
SettingsButtonText = "Settings",
|
|
ExitButtonText = "Exit"
|
|
};
|
|
}
|
|
}
|
|
}
|