12 lines
133 B
C++
12 lines
133 B
C++
#pragma once
|
|
|
|
struct OpsList {
|
|
|
|
struct Entry {
|
|
char filler[0x10];
|
|
};
|
|
|
|
bool b;
|
|
std::vector<Entry> entries;
|
|
|
|
}; |