12 lines
238 B
C#
12 lines
238 B
C#
using GameCore.ECS;
|
|
using GameCore.ECS.Interfaces;
|
|
|
|
namespace GameCore.Combat;
|
|
|
|
public class EffectExecutionSystem : ISystem
|
|
{
|
|
public void Update(World world, float deltaTime)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |