Example #1
0
        public PlayCameraForm(PlayCameraAction action)
        {
            InitializeComponent();
            this.helpTopic = PlayCamera.HelpTopic;

            //The action is saved in order to save the changes
            this.action = action;
        }
Example #2
0
 public PlayCameraPanel(PlayCameraAction action)
 {
     InitializeComponent();
     this.action = action;
 }
 public PlayCameraGraphic(string key, PlayCameraAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(PlayCamera.NeedInit);
     this.Surface.Blit(new Surface(PlayCamera.GraphicIcon));
 }