// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2024 Kybernetik // namespace Animancer { /// [Pro-Only] An object that can be updated during Animancer's animation updates. /// /// See for an example of how to use this class. /// Simply inherit from this instead of implementing directly. /// /// https://kybernetik.com.au/animancer/api/Animancer/Updatable public abstract class Updatable : IUpdatable { /************************************************************************************************************************/ /// int IUpdatable.UpdatableIndex { get; set; } = IUpdatable.List.NotInList; /************************************************************************************************************************/ /// public abstract void Update(); /************************************************************************************************************************/ } }