Remove Universe constructor using args

main
copygirl 1 year ago
parent 6a38f97830
commit d80e69006c
  1. 2
      src/gaemstone.ECS
  2. 4
      src/gaemstone/Universe.cs

@ -1 +1 @@
Subproject commit eec968d6361930eebad180f6300d126c4bac70f3 Subproject commit c575046a61620434e7ee01679ce86bf0beb0f700

@ -7,9 +7,9 @@ public class Universe<TContext>
public World<TContext> World { get; } public World<TContext> World { get; }
public ModuleManager<TContext> Modules { get; } public ModuleManager<TContext> Modules { get; }
public Universe(params string[] args) public Universe()
{ {
World = new(args); World = new();
Modules = new(this); Modules = new(this);
// Bootstrap [Relation] tag, since it will be added to some Flecs types. // Bootstrap [Relation] tag, since it will be added to some Flecs types.

Loading…
Cancel
Save