mirror of
https://github.com/openeggbert/mobile-eggbert-monogame-desktop.git
synced 2025-03-26 16:09:24 +01:00
18 lines
372 B
C#
18 lines
372 B
C#
// WindowsPhoneSpeedyBlupi, Version=1.0.0.5, Culture=neutral, PublicKeyToken=6db12cd62dbec439
|
|
// WindowsPhoneSpeedyBlupi.TinyPoint
|
|
|
|
namespace WindowsPhoneSpeedyBlupi
|
|
{
|
|
public struct TinyPoint
|
|
{
|
|
public int X;
|
|
|
|
public int Y;
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0};{1}", X, Y);
|
|
}
|
|
}
|
|
|
|
} |