Pools y sort
This commit is contained in:
parent
a90c96a078
commit
5c66ccc19f
1 changed files with 4 additions and 4 deletions
|
|
@ -9,13 +9,13 @@ using System.Collections.Generic;
|
||||||
public partial class PoolContainer : Node
|
public partial class PoolContainer : Node
|
||||||
{
|
{
|
||||||
[Export]
|
[Export]
|
||||||
public CanvasLayer Zombies { get; private set; }
|
public Node2D Zombies { get; private set; }
|
||||||
[Export]
|
[Export]
|
||||||
public CanvasLayer Plants { get; private set; }
|
public Node2D Plants { get; private set; }
|
||||||
[Export]
|
[Export]
|
||||||
public CanvasLayer Projectiles { get; private set; }
|
public Node2D Projectiles { get; private set; }
|
||||||
[Export]
|
[Export]
|
||||||
public CanvasLayer Structures { get; private set; }
|
public Node2D Structures { get; private set; }
|
||||||
|
|
||||||
public Dictionary<Vector2, IEntity>[] EntityField = { new Dictionary<Vector2, IEntity>(), new Dictionary<Vector2, IEntity>(), new Dictionary<Vector2, IEntity>() };
|
public Dictionary<Vector2, IEntity>[] EntityField = { new Dictionary<Vector2, IEntity>(), new Dictionary<Vector2, IEntity>(), new Dictionary<Vector2, IEntity>() };
|
||||||
public override void _Ready()
|
public override void _Ready()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue