This repository has been archived on 2024-05-15. You can view files and clone it, but cannot push or open issues or pull requests.
fugg/flyff-api/include/flyff.h

27 lines
632 B
C++

#pragma once
#include <fugg.h>
#include <string>
#include "../src/import.h"
namespace flyff {
#include "../src/raw/ItemProperty.h"
#include "../src/raw/MusicProperty.h"
#include "../src/raw/Mover.h"
namespace api {
// static_assert(sizeof(fugg::ModulePointer<void>) == sizeof(u32), "ModulePointer needs the same size as u32");
extern "C" {
// Translate
// extern void translate(u32, u32);
// extern void w2c_f167(fugg::String*, std::string*);
extern void w2c_f167(u32, u32);
extern u32 w2c_f208(u64);
};
}
}