コード例 #1
0
ファイル: Storage.cs プロジェクト: RedForest347/Game-3
 public entityData(bool have_component, ComponentBase component)
 {
     this.have_component = have_component;
     this.component      = component;
 }
コード例 #2
0
ファイル: Storage.cs プロジェクト: RedForest347/Game-3
 public void SetDefault()
 {
     have_component = false;
     component      = null;
 }
コード例 #3
0
ファイル: Storage.cs プロジェクト: RedForest347/Game-3
 public abstract bool Add(ComponentBase component, int entity);