mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
22 lines
385 B
C++
22 lines
385 B
C++
#ifndef TIGER_CONTEXT_HPP_
|
|
#define TIGER_CONTEXT_HPP_
|
|
|
|
#include "wild_context.hpp"
|
|
|
|
class tiger_context : public wild_context
|
|
{
|
|
typedef struct tiger_operand
|
|
{
|
|
bool is_found; // idk1/idk2
|
|
uint16_t operand_data; // idk3/idk5
|
|
uint16_t operand_info; // idk4/idk6
|
|
} tiger_operand;
|
|
|
|
public:
|
|
void clear();
|
|
|
|
public:
|
|
tiger_operand tiger_operands[2];
|
|
};
|
|
|
|
#endif |