Deep RTS
include
DeepRTS
util
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
8
struct
Position
{
9
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
Position
Definition:
Position.h:8
Position::Position
Position()
Definition:
Position.h:9
Position::y
int y
Definition:
Position.h:13
Position::Position
Position(int x, int y)
Definition:
Position.h:10
Position::x
int x
Definition:
Position.h:10
Generated by
1.9.2