feat: custom languages syntax (WIP)

This commit is contained in:
MihailRis
2025-04-13 00:19:38 +03:00
parent 4360cd408b
commit 5253be6c56
18 changed files with 278 additions and 88 deletions
+23
View File
@@ -0,0 +1,23 @@
#pragma once
#include <string>
#include <memory>
class Engine;
namespace devtools {
class SyntaxProcessor;
class Editor {
public:
Editor(Engine& engine);
~Editor();
void loadTools();
SyntaxProcessor& getSyntaxProcessor();
private:
Engine& engine;
std::unique_ptr<SyntaxProcessor> syntaxProcessor;
};
}