Files
crib/include/main.h
Syed Daanish 5b66f503e4 Improve highlighting structure
- switched to a sparse delta based map
- true lazy-loading to avoid any unneccessary allocations
- fixed windows management api
2026-02-11 18:18:28 +00:00

22 lines
302 B
C++

#ifndef MAIN_H
#define MAIN_H
#include "pch.h"
#include "ui/bar.h"
#define NORMAL 0
#define INSERT 1
#define SELECT 2
#define RUNNER 3
#define JUMPER 4
extern std::atomic<bool> running;
extern std::atomic<uint8_t> mode;
extern fs::path pwd;
namespace ui {
extern Bar bar;
} // namespace ui
#endif