コード例 #1
0
 internal void SetWorld(EcsWorld world)
 {
     _world = world;
 }
コード例 #2
0
 internal EntityBuilder(EcsWorld world, uint id)
 {
     _world  = world;
     _entity = new Entity(id);
     _entity.Init(_world);
 }
コード例 #3
0
ファイル: Entity.cs プロジェクト: nSavelev/CsharpEcsLib
 internal void Init(EcsWorld world)
 {
     _world      = world;
     _components = world.ComponentTypes.ToDictionary(k => k, v => new HashSet <int>());
 }
コード例 #4
0
 internal EntityBuilder(EcsWorld world, Entity entity)
 {
     _entity = entity;
     _world  = world;
 }
コード例 #5
0
ファイル: Entity.cs プロジェクト: nSavelev/CsharpEcsLib
 public Entity(Dictionary <Type, HashSet <int> > components, EcsWorld world)
 {
     _components = components;
     _world      = world;
 }