Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. using System.Drawing;
  2.  
  3. namespace BejeweledBot
  4. {
  5. public enum Direction
  6. {
  7. UP,
  8. RIGHT,
  9. DOWN,
  10. LEFT
  11. }
  12.  
  13. public class Move
  14. {
  15. public Point Pt { get; set; }
  16. public Direction Direction { get; set; }
  17.  
  18. public Move(Point pt, Direction dir)
  19. {
  20. Pt = pt;
  21. Direction = dir;
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement