walking and turning effect

This commit is contained in:
Ondřej Novák 2025-01-29 14:22:27 +01:00
parent 3b903e2b52
commit 4f9f985918
12 changed files with 286 additions and 98 deletions

View file

@ -1,3 +1,4 @@
#include <cassert>
#include <cstdarg>
#include <cstdint>
#include <iostream>
@ -8,7 +9,9 @@ extern "C" {
void display_error(const char *text) {
char failed_because_error = 0;
std::cerr << "ERROR:" << text << std::endl;
assert(failed_because_error);
}