Files
MonoGame.Extended/Source/Demos/Demo.Platformer/Entities/Components/EntityComponent.cs
T
2016-08-18 23:21:37 +10:00

11 lines
212 B
C#

namespace Demo.Platformer.Entities.Components
{
public abstract class EntityComponent
{
protected EntityComponent()
{
}
public Entity Entity { get; internal set; }
}
}