11 lines
123 B
C++
11 lines
123 B
C++
#pragma once
|
|
|
|
struct Whitelist {
|
|
|
|
struct Entry {
|
|
char filler[0x20];
|
|
};
|
|
|
|
std::vector<Entry> entries;
|
|
|
|
}; |