public PlayerJoinedScriptClient(ClientForm Owner)
     : base(ScriptName)
 {
     this.Owner = Owner;
 }
Пример #2
0
 public ApiRequestFormOutput(ClientForm cf)
 {
     InitializeComponent();
     clientForm = cf;
 }
Пример #3
0
 public ApiRequestFormHandler(ClientForm form)
 {
     client = form;
 }
 public CreateGameScriptClient(ClientForm Owner)
     : base(ScriptName)
 {
     this.Owner = Owner;
 }
Пример #5
0
 public StartGameScriptClientForm(ClientForm Owner)
     : base(ScriptName)
 {
     this.Owner = Owner;
 }
Пример #6
0
 public SendPlayerUpdateScriptClient(ClientForm Owner)
     : base(ScriptName)
 {
     this.Owner = Owner;
 }
Пример #7
0
 public FlowHandler(ClientForm form, FlowFileHandler fileHandler)
 {
     clientForm      = form;
     flowFileHandler = fileHandler;
     Flows           = new List <Flow>();
 }
 public LoginSuccessScriptClient(ClientForm Owner)
     : base(ScriptName)
 {
     this.Owner = Owner;
 }
Пример #9
0
 public SendRoomInformationScriptClient(ClientForm Owner)
     : base(ScriptName)
 {
     this.Owner = Owner;
 }