using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MudEngine.Core.Interfaces { /// /// Public API for classes that need to be updated constantly. /// public interface IUpdatable { void Update(); } }