File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ public abstract class Controller : MonoBehaviour, IController {
1515 /// </summary>
1616 public static Controller Instance { private set ; get ; } = null ;
1717
18+ /// <summary>
19+ /// The assets that can be added to entities.
20+ /// </summary>
21+ [ SerializeField ] Object [ ] assets ;
22+
1823 /// <summary>
1924 /// A list of the controller's instantiated entity systems.
2025 /// </summary>
@@ -35,11 +40,6 @@ public abstract class Controller : MonoBehaviour, IController {
3540 /// </summary>
3641 bool isInitialized ;
3742
38- /// <summary>
39- /// The assets that can be added to entities.
40- /// </summary>
41- public Object [ ] assets ;
42-
4343 /// <summary>
4444 /// Invoked by the Unity Engine when the controller is started.
4545 /// </summary>
You can’t perform that action at this time.
0 commit comments