mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 01:08:01 +03:00
24 lines
479 B
C++
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);
|
|
};
|