Files
crib/include/main.h
2026-01-03 17:46:04 +00:00

18 lines
287 B
C++

#ifndef MAIN_H
#define MAIN_H
#include "pch.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 std::vector<struct Editor *> editors;
extern uint8_t current_editor;
#endif