aboutsummaryrefslogtreecommitdiff
path: root/structs.h
blob: 5221829b2022ac08ea422edb68572058e3a26339 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef STRUCTS_H_
#define STRUCTS_H_

#include <stddef.h>

struct Position_s {
    size_t x;
    size_t y;
};

typedef struct Position_s Position;

#endif /* STRUCTS_H_ */