summaryrefslogtreecommitdiff
path: root/include/position.h
blob: 3a24df4f8be3b7c10e715f0ae08bda676342a972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef GUARD_POSITION_H
#define GUARD_POSITION_H

struct Position
{
    s16 x;
    s16 y;
};

struct Position32
{
    s32 x;
    s32 y;
};

#endif