using System; namespace TheGameExtreme.Interface { public interface IMessage { void LongAlert(string message); void ShortAlert(string message); } }