TombEngine/TR5Main/Scripting/GameScriptInventoryObject.h
2021-07-31 13:23:22 +01:00

24 lines
479 B
C++

#pragma once
#include <string>
namespace sol {
class state;
}
struct GameScriptInventoryObject
{
std::string name;
short slot;
float yOffset;
float scale;
float xRot;
float yRot;
float zRot;
short rotationFlags;
int meshBits;
__int64 operation;
GameScriptInventoryObject(std::string name, short slot, float yOffset, float scale, float xRot, float yRot, float zRot, short rotationFlags, int meshBits, __int64 operation);
static void Register(sol::state* lua);
};