mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 06:53:52 +00:00
4ca5da5666
Use LibFFI for Public & Timer APIs Use "PlayerId" type instead "unsigned short" Add GetPluginDir() function
13 lines
375 B
C++
13 lines
375 B
C++
#include "Callbacks.hpp"
|
|
#include "API/PublicFnAPI.hpp"
|
|
#include <cstdarg>
|
|
#include <iostream>
|
|
#include <apps/openmw-mp/Player.hpp>
|
|
#include <apps/openmw-mp/Networking.hpp>
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
template<typename... Types>
|
|
constexpr char TypeString<Types...>::value[];
|
|
constexpr ScriptCallbackData Callbacks::callbacks[];
|
|
|
|
using namespace std;
|