mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-12-05 16:16:33 +00:00
27 lines
607 B
C#
27 lines
607 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
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();
|
|
}
|
|
}
|
|
}
|