namespace Artemis.Core { /// /// Represents a model that updates using a delta time /// public interface IUpdateModel { /// /// Performs an update on the model /// /// The delta time in seconds void Update(double deltaTime); } }