Jypeli  5
The simple game programming library
IntPoint.cs
Siirry tämän tiedoston dokumentaatioon.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 namespace Jypeli
7 {
11  public class IntPoint
12  {
16  public int X { get; set; }
17 
21  public int Y { get; set; }
22 
23  public IntPoint(int x, int y)
24  {
25  this.X = x;
26  this.Y = y;
27  }
28  }
29 }
int Y
Y-koordinaatti.
Definition: IntPoint.cs:21
Piste kokonaislukuruudukossa.
Definition: IntPoint.cs:11
IntPoint(int x, int y)
Definition: IntPoint.cs:23
int X
X-koordinaatti.
Definition: IntPoint.cs:16