Renamed files

This commit is contained in:
dpassoni
2023-03-16 15:34:35 +01:00
parent 64df9b142d
commit 53911cf314
51 changed files with 2483 additions and 60 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include "framework.h"
#include "luatools.h"
#include "commands.h"
class Scheduler
{
public:
Scheduler(lua_State* L);
~Scheduler();
void appendCommand(Command* command);
void execute(lua_State* L);
void handleRequest(wstring key, json::value value);
private:
list<Command*> commands;
int load;
};