rename files based on their classes

This commit is contained in:
2026-02-28 22:30:00 +01:00
parent 809fbf1b93
commit 9ab96c5903
22 changed files with 677 additions and 657 deletions

View File

@ -24,6 +24,14 @@ struct overloads : Ts...
using Ts::operator()...;
};
enum direction
{
nor = 1 << 0,
eas = 1 << 1,
sou = 1 << 2,
wes = 1 << 3,
};
enum ctrl
{
reset = 0,
@ -91,4 +99,4 @@ auto errln(std::format_string<Args...> fmt, Args&&... args) -> void
<< std::format(fmt, std::forward<Args>(args)...) << std::endl;
}
#endif
#endif