cOMS/module/Module.h
Dennis Eichhorn 39fbcf4300
Some checks are pending
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Waiting to run
Microsoft C++ Code Analysis / Analyze (push) Waiting to run
linux bug fixes
2025-03-22 01:10:19 +00:00

23 lines
435 B
C
Executable File

#ifndef COMS_MODULE_H
#define COMS_MODULE_H
#include "../stdlib/Types.h"
#include "../../GameEngine/system/Library.h"
enum ModuleType {
MODULE_TYPE_HUD,
MODULE_TYPE_UI,
MODULE_TYPE_WINDOW, // Additional window
MODULE_TYPE_API, // Extracts data and sends it somewhere (website, file, etc.)
};
struct Module {
char name[128];
int32 version;
ModuleType type;
bool is_active;
Library lib;
};
#endif