Ejemplo n.º 1
0
 public void addGameEntity(GameEntity entity)
 {
     _entities.Add(entity);
 }
Ejemplo n.º 2
0
 private static GameEntity ParseEntity(List<String> list)
 {
     // TODO Add Regex coding to read in tags, then split strings by delimiter (tbd)
     GameEntity temp = new GameEntity("temp");
     return temp;
 }