2015-08-15 23:11:45 -04:00

10 lines
141 B
C#

using System.Collections.Generic;
namespace DeathBook.Util
{
public interface Updatable
{
void Update(float deltaTime);
}
}