Prepping for singleplayer style client and server.

This commit is contained in:
2025-04-09 14:24:36 -05:00
parent 9208ebb685
commit a04014c054
16 changed files with 753 additions and 445 deletions

View File

@@ -7,6 +7,12 @@
#include "assert.h"
pthread_t assertMainThread = 0;
void assertInit() {
assertMainThread = pthread_self();
}
void assertTrueImpl(
const char *file,
const int32_t line,