mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
14 lines
383 B
C#
14 lines
383 B
C#
namespace Artemis.Core
|
|
{
|
|
/// <summary>
|
|
/// Represents a model that updates using a delta time
|
|
/// </summary>
|
|
public interface IUpdateModel
|
|
{
|
|
/// <summary>
|
|
/// Performs an update on the model
|
|
/// </summary>
|
|
/// <param name="timeline">The timeline to apply during update</param>
|
|
void Update(Timeline timeline);
|
|
}
|
|
} |