20 lines
446 B
C
20 lines
446 B
C
|
#pragma once
|
||
|
|
||
|
#include <RE/Skyrim.h>
|
||
|
#include <SKSE/SKSE.h>
|
||
|
#include <REL/Relocation.h>
|
||
|
|
||
|
#include <ShlObj_core.h>
|
||
|
#undef cdecl // Workaround for Clang 14 CMake configure error.
|
||
|
|
||
|
#include <spdlog/sinks/basic_file_sink.h>
|
||
|
#include <spdlog/sinks/msvc_sink.h>
|
||
|
|
||
|
// Compatible declarations with other sample projects.
|
||
|
#define DLLEXPORT __declspec(dllexport)
|
||
|
|
||
|
using namespace std::literals;
|
||
|
using namespace REL::literals;
|
||
|
|
||
|
namespace logger = SKSE::log;
|