mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 04:20:58 +00:00
10 lines
141 B
C#
10 lines
141 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DeathBook.Util
|
|
{
|
|
public interface Updatable
|
|
{
|
|
void Update(float deltaTime);
|
|
}
|
|
}
|