This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef MOD_API_H | |
#define MOD_API_H | |
#include <stdint.h> | |
/** (chatgpt generated documentation) | |
These macros define functions for extracting the different parts of a software version number. | |
The version number is assumed to be passed in as an unsigned 32 bit integer `VERSION`, where | |
each part of the version (major, minor, patch, and revision) is stored as one byte. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define WIN32_LEAN_AND_MEAN | |
#define VC_EXTRA_LEAN | |
#define NOGDICAPMASKS //CC_ * , LC_*, PC_*, CP_*, TC_*, RC_ | |
//#define NOVIRTUALKEYCODES //VK_ * | |
//#define NOWINMESSAGES //WM_ * , EM_*, LB_*, CB_* | |
//#define NOWINSTYLES //WS_ * , CS_*, ES_*, LBS_*, SBS_*, CBS_* | |
#define NOSYSMETRICS //SM_ * | |
#define NOMENUS //MF_ * | |
#define NOICONS //IDI_ * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash --noprofile | |
#extra strict flags | |
set -euo pipefail | |
#screen buffer | |
declare -a level | |
#globals | |
declare -i lv_w=0 #width of level |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash --noprofile | |
# DO ALMOST ANYTHING PUBLIC LICENSE | |
# Everyone is permitted to copy and distribute verbatim or modified | |
# copies of this code for any purpose as long as any "Credit" | |
# lines are not removed. | |
#Credit: /u/linuxversion | |
#<your Credit line here, if you want> |