12 lines
160 B
C
12 lines
160 B
C
#ifndef BREEZE_VEC2_H
|
|
#define BREEZE_VEC2_H
|
|
|
|
#include "breeze/defines.h"
|
|
|
|
typedef struct Vec2i {
|
|
int32_t x;
|
|
int32_t y;
|
|
} Vec2i;
|
|
|
|
#endif //BREEZE_VEC2_H
|