예제 #1
0
파일: Monster.cs 프로젝트: JIy3AHKO/TaskMgr
 public Monster(Position position)
     : base(position)
 {
 }
예제 #2
0
 protected BaseCharacter(Position position)
 {
     Id = new Guid();
     Position = position;
 }
예제 #3
0
 public TeleportationAction(int priority, BaseCharacter source, Position target)
     : base(priority, source)
 {
     Target = target;
 }
예제 #4
0
 public MoveCommand(BaseCharacter character, Position target)
 {
     Character = character;
     Target = target;
 }
예제 #5
0
파일: Hero.cs 프로젝트: JIy3AHKO/TaskMgr
 public Hero(Position position)
     : base(position)
 {
 }
예제 #6
0
 public void Teleportate(MouseEventArgs args)
 {
     var target = new Position(args.X, args.Y);
     World.ReciveCommand(new MoveCommand(World.Player, target));
 }