namespace Artemis.Core { /// /// Represents a model that updates using a delta time /// public interface IUpdateModel { /// /// Performs an update on the model /// /// The timeline to apply during update void Update(Timeline timeline); } }