コード例 #1
0
 public bool HasKey(int ID)
 {
     return(entitys.Has(x => x.ID == ID));
 }
コード例 #2
0
ファイル: ECSEntityHandle.cs プロジェクト: Dreamer2345/ECS
 public bool HasComponent(object type)
 {
     return(Components.Has(x => x.Item1 == type.GetType()));
 }