forgot to implement stub methods

This commit is contained in:
Gered 2013-08-22 15:31:49 -04:00
parent 2caa638d19
commit 59a82262fe

View file

@ -16,22 +16,22 @@ namespace Blarg.GameFramework.Entities
public T Get<T>() where T : Component public T Get<T>() where T : Component
{ {
return null; return _entityManager.GetComponent<T>(this);
} }
public T Add<T>() where T : Component public T Add<T>() where T : Component
{ {
return null; return _entityManager.AddComponent<T>(this);
} }
public void Remove<T>() where T : Component public void Remove<T>() where T : Component
{ {
return; _entityManager.RemoveComponent<T>(this);
} }
public bool Has<T>() where T : Component public bool Has<T>() where T : Component
{ {
return false; return _entityManager.HasComponent<T>(this);
} }
} }
} }