2020-12-27 14:39:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <glad/glad.h>
|
|
|
|
#include <imgui.h>
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
#include <views/view.hpp>
|
|
|
|
#include <providers/provider.hpp>
|
2021-01-03 23:19:56 +00:00
|
|
|
#include <helpers/shared_data.hpp>
|
2021-01-12 15:50:15 +00:00
|
|
|
#include <helpers/content_registry.hpp>
|
2020-12-27 14:39:06 +00:00
|
|
|
|
2021-01-13 00:24:27 +00:00
|
|
|
#define IMHEX_PLUGIN_SETUP namespace hex::plugin::internal { \
|
|
|
|
void initializePlugin(); \
|
|
|
|
} \
|
|
|
|
void hex::plugin::internal::initializePlugin()
|