Well... I forgot ICollectionItem on some interfaces...

This commit is contained in:
Michel Fedde 2021-04-19 20:54:18 +02:00
parent 35c433fa85
commit a921eb827e
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ namespace SM.Base.Scene
/// <summary> /// <summary>
/// This interface allows for a object to implerment a fixed update. /// This interface allows for a object to implerment a fixed update.
/// </summary> /// </summary>
public interface IFixedScriptable public interface IFixedScriptable : ICollectionItem
{ {
/// <summary> /// <summary>
/// Executes a fixed update. /// Executes a fixed update.

View file

@ -9,7 +9,7 @@ namespace SM.Base.Scene
/// <summary> /// <summary>
/// Defines a object as script. /// Defines a object as script.
/// </summary> /// </summary>
public interface IScriptable public interface IScriptable : ICollectionItem
{ {
/// <summary> /// <summary>
/// If not active, ItemCollections will ignore them. /// If not active, ItemCollections will ignore them.