20 lines
248 B
C
20 lines
248 B
C
#ifndef LOTOSTATEK_POSITION_H
|
|
#define LOTOSTATEK_POSITION_H
|
|
|
|
struct Position {
|
|
int x;
|
|
int y;
|
|
};
|
|
|
|
struct PositionU {
|
|
unsigned int x;
|
|
unsigned int y;
|
|
};
|
|
|
|
struct PositionF {
|
|
float x;
|
|
float y;
|
|
};
|
|
|
|
#endif //LOTOSTATEK_POSITION_H
|