Advertisement
wingman007

SnakeOOPFinal_Point

Oct 27th, 2014
160
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 SnakeOOP1b
  8. {
  9.     class 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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement