コード例 #1
0
 public RunInitiation(GameObject gameObject, Game game, ServerRow serverRow)
 {
     this.gameObject = gameObject;
     this.game       = game;
     droppable       = gameObject.AddComponent <Droppable>();
     serverRow.Observe(this);
 }
コード例 #2
0
            public ServerRow AddServerRow(System.Uri Uri, string Name)
            {
                ServerRow rowServerRow = ((ServerRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Uri,
                    Name
                };
                rowServerRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowServerRow);
                return(rowServerRow);
            }
コード例 #3
0
 public RunInitiation(GameObject gameObject, Game game, ServerRow serverRow)
 {
     this.gameObject = gameObject;
     this.game       = game;
     serverRow.Observe(this);
 }
コード例 #4
0
 public CorpView(ServerRow serverRow)
 {
     this.serverRow = serverRow;
 }
コード例 #5
0
 public ServerRowChangeEvent(ServerRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #6
0
 public void RemoveServerRow(ServerRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #7
0
 public void AddServerRow(ServerRow row)
 {
     this.Rows.Add(row);
 }