restructure more

This commit is contained in:
Ben Kyd
2025-06-29 23:33:26 +01:00
parent 8e713e38e6
commit e66a2eec47
3865 changed files with 1758598 additions and 28 deletions

17
ThirdParty/Yolo/example/example.cpp vendored Normal file
View File

@@ -0,0 +1,17 @@
#include "yolo/yolo.hpp"
int main(int, char**)
{
int x = 12;
int y = 3;
yolo::info("value for x is {} and value for y is {}", x, y);
auto mod = yolo::registerModule("COMPONENT", "\u001b[35;1m");
yolo::info(mod, "value for x is {} and value for y is {}", x, y);
yolo::warn(mod, "value for x is {} and value for y is {}", x, y);
yolo::error(mod, "value for x is {} and value for y is {}", x, y);
yolo::debug(mod, "value for x is {} and value for y is {}", x, y);
return 0;
}