wingman007

SnakeOOPFinal2b_Point

Oct 28th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace SnakeOOP2b
  8. {
  9.     struct Point
  10.     {
  11.         public int x, y;
  12.         public Point(int x, int y)
  13.         {
  14.             this.x = x;
  15.             this.y = y;
  16.         }
  17.     }
  18. }
Add Comment
Please, Sign In to add comment