Archived
1
0

Initial import

This commit is contained in:
2009-01-29 23:44:45 +01:00
commit 7028323a80
15 changed files with 922 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace vampi {
public struct Position {
public int x;
public int y;
public Position(int x, int y) {
this.x = x;
this.y = y;
}
public Position(Position pos) {
this.x = pos.x;
this.y = pos.y;
}
}
}