2026-01-19 20:18:08 +02:00

12 lines
133 B
C++

#pragma once
struct OpsList {
struct Entry {
char filler[0x10];
};
bool b;
std::vector<Entry> entries;
};