Example #1
0
 public ObstacleGraphic(string key, ObstacleAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(Obstacle.NeedInit);
     this.Surface.Blit(new Surface(Obstacle.GraphicIcon));
 }
Example #2
0
 public ObstacleForm(ObstacleAction action)
 {
     InitializeComponent();
     this.helpTopic = Obstacle.HelpTopic;
     this.action    = action;
 }
Example #3
0
 public ObstaclePanel(ObstacleAction action)
 {
     InitializeComponent();
     this.action = action;
 }