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