Skip to content

Commit e15788b

Browse files
Updated protection levels
1 parent 040e4ce commit e15788b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Runtime/Controller.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)