We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d29bbd commit 16c2250Copy full SHA for 16c2250
Runtime/Controller.cs
@@ -1,7 +1,7 @@
1
namespace ElRaccoone.EntityComponentSystem {
2
3
/// Base class for every controller.
4
- public abstract class Controller : UnityEngine.MonoBehaviour {
+ public abstract class Controller : UnityEngine.MonoBehaviour, IController {
5
6
/// A list of the controller's instantiated entity systems.
7
private System.Collections.Generic.List<IEntitySystem> systems;
Runtime/Interfaces/IController.cs
@@ -0,0 +1,5 @@
+namespace ElRaccoone.EntityComponentSystem {
+
+ /// Base interface for the controller
+ public interface IController { }
+}
0 commit comments