mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
8 lines
233 B
C#
8 lines
233 B
C#
namespace MonoGame.Extended.Entities.Systems
|
|
{
|
|
public abstract class BaseSystem
|
|
{
|
|
public EntityWorld World { get; internal set; }
|
|
public abstract void Initialize(ComponentManager componentManager);
|
|
}
|
|
} |