Files
2023-04-12 22:04:03 +02:00

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