Deep RTS
Position.h
Go to the documentation of this file.
1//
2// Created by per on 3/16/17.
3//
4
5#ifndef DEEPRTS_POSITION_H
6#define DEEPRTS_POSITION_H
7
8struct Position {
10 Position(int x, int y): x(x), y(y){};
11
12 int x;
13 int y;
14};
15
16#endif //DEEPRTS_POSITION_H
Definition: Position.h:8
Position()
Definition: Position.h:9
int y
Definition: Position.h:13
Position(int x, int y)
Definition: Position.h:10
int x
Definition: Position.h:10