add register entity

This commit is contained in:
Lev 2024-08-15 17:24:25 +03:00
parent fc969da956
commit f23bd9fe9f
15 changed files with 5 additions and 0 deletions

View file

@ -40,5 +40,10 @@ namespace ZoFo.GameCore
internal void Update(GameTime gameTime)
{
}
public void RegisterEntity(GameObject gameObject)
{
gameObjects.Add(gameObject);
}
}
}