Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          gameobject.cs - A sample C# interface.Lecture 5 - slide 11 : 40
Program 1

// This is a C# interface.

public enum GameObjectMedium {Paper, Plastic, Electronic}

public interface IGameObject{

  int GameValue{
    get;
  }

  GameObjectMedium Medium{
    get;
  }
}