mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-12-05 08:09:02 +00:00
22 lines
491 B
C#
22 lines
491 B
C#
using Milimoe.FunGame.Desktop.Library.Interface;
|
|
using Milimoe.FunGame.Desktop.Model;
|
|
using Milimoe.FunGame.Desktop.UI;
|
|
|
|
namespace Milimoe.FunGame.Desktop.Controller
|
|
{
|
|
public class RegisterController : IReg
|
|
{
|
|
RegisterModel RegisterModel { get; }
|
|
|
|
public RegisterController(Register Register)
|
|
{
|
|
RegisterModel = new RegisterModel(Register);
|
|
}
|
|
|
|
public bool Reg()
|
|
{
|
|
return RegisterModel.Reg();
|
|
}
|
|
}
|
|
}
|