iw5-mod/src/game/scripting/stack_isolation.hpp
2019-01-20 13:38:36 +01:00

24 lines
369 B
C++

#pragma once
#include "game/game.hpp"
namespace game
{
namespace scripting
{
class stack_isolation final
{
public:
stack_isolation();
~stack_isolation();
private:
native::VariableValue stack_[512]{};
native::VariableValue* max_stack_;
native::VariableValue* top_;
unsigned int in_param_count_;
unsigned int out_param_count_;
};
}
}