コード例 #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
コード例 #2
0
 public void moveTo(object sender, Point pos, Game1.Characters who)
 {
     if (onMoveTo != null)
     onMoveTo(sender, new PointEventArg(pos, who));
 }
コード例 #3
0
 public PointEventArg(Point position, Game1.Characters who)
     : base()
 {
     this.position = position;
       this.who = who;
 }