mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-22 20:57:48 +01:00
18 lines
692 B
Plaintext
18 lines
692 B
Plaintext
//I am not a coder. Please fucking tear apart my code, and insult me for how awful I am at coding. Please and thank you. -Dahlular
|
|
//alright bet -BoxBoy
|
|
#define RESIZE_MACRO 6
|
|
#define RESIZE_HUGE 4
|
|
#define RESIZE_BIG 2
|
|
#define RESIZE_NORMAL 1
|
|
#define RESIZE_SMALL 0.75
|
|
#define RESIZE_TINY 0.50
|
|
#define RESIZE_MICRO 0.25
|
|
|
|
//averages
|
|
#define RESIZE_A_MACROHUGE (RESIZE_MACRO + RESIZE_HUGE) / 2
|
|
#define RESIZE_A_HUGEBIG (RESIZE_HUGE + RESIZE_BIG) / 2
|
|
#define RESIZE_A_BIGNORMAL (RESIZE_BIG + RESIZE_NORMAL) / 2
|
|
#define RESIZE_A_NORMALSMALL (RESIZE_NORMAL + RESIZE_SMALL) / 2
|
|
#define RESIZE_A_SMALLTINY (RESIZE_SMALL + RESIZE_TINY) / 2
|
|
#define RESIZE_A_TINYMICRO (RESIZE_TINY + RESIZE_MICRO) / 2
|