mirror of
https://github.com/DCFApixels/DragonECS-Graphs.git
synced 2025-09-18 03:34:35 +08:00
Update EcsGraphWorld.cs
This commit is contained in:
parent
dde34277d0
commit
c19cb8cdc7
@ -10,8 +10,9 @@ namespace DCFApixels.DragonECS
|
||||
[MetaID("ECC4CF479301897718600925B00A7DB4")]
|
||||
public sealed class EcsGraphWorld : EcsWorld, IInjectionUnit
|
||||
{
|
||||
public EcsGraphWorld(EcsWorldConfig config, short worldID = -1) : base(config, worldID) { }
|
||||
public EcsGraphWorld(IConfigContainer configs = null, short worldID = -1) : base(configs, worldID) { }
|
||||
public EcsGraphWorld() : base() { }
|
||||
public EcsGraphWorld(EcsWorldConfig config = null, string name = null, short worldID = -1) : base(config, name == null ? "Default" : name, worldID) { }
|
||||
public EcsGraphWorld(IConfigContainer configs, string name = null, short worldID = -1) : base(configs, name == null ? "Default" : name, worldID) { }
|
||||
void IInjectionUnit.InitInjectionNode(InjectionGraph nodes) { nodes.AddNode(this); }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user