Initial commit, some logic added
This commit is contained in:
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
struct Position {
|
||||
int x;
|
||||
int y;
|
||||
|
||||
Position() : x(0), y(0) {}
|
||||
Position(int x, int y) : x(x), y(y) {}
|
||||
};
|
||||
Reference in New Issue
Block a user