20 lines
323 B
C++
20 lines
323 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 std::vector<struct Editor *> editors;
|
|
extern uint8_t current_editor;
|
|
extern Bar bar;
|
|
|
|
#endif
|