mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-19 02:24:37 +08:00
Update EcsWorld.cs
This commit is contained in:
parent
94d7734bcd
commit
7ce5e0b19b
@ -148,6 +148,8 @@ namespace DCFApixels.DragonECS
|
||||
|
||||
#region Constructors/Destroy
|
||||
public EcsWorld() : this(ConfigContainer.Empty, null, -1) { }
|
||||
public EcsWorld(EcsWorldConfig config = null, short worldID = -1) : this(config == null ? ConfigContainer.Empty : new ConfigContainer().Set(config), null, worldID) { }
|
||||
public EcsWorld(IConfigContainer configs, short worldID = -1) : this(configs, null, worldID) { }
|
||||
public EcsWorld(EcsWorldConfig config = null, string name = null, short worldID = -1) : this(config == null ? ConfigContainer.Empty : new ConfigContainer().Set(config), name, worldID) { }
|
||||
public EcsWorld(IConfigContainer configs, string name = null, short worldID = -1)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user