// This is a C# interface. public enum GameObjectMedium {Paper, Plastic, Electronic} public interface IGameObject{ int GameValue{ get; } GameObjectMedium Medium{ get; } }