mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-24 05:55:01 +03:00
8 lines
142 B
C
8 lines
142 B
C
#ifndef MACROS_H
|
|
#define MACROS_H
|
|
|
|
#define ARRAY_COUNT(arr) (s32)(sizeof(arr) / sizeof(arr[0]))
|
|
#define SQ(x) ((x) * (x))
|
|
|
|
#endif // MACROS_H
|