| 10 | #include <map> |
| 11 | |
| 12 | struct HackInfo |
| 13 | { |
| 14 | const char* m_filename; // The filename of the main executable |
| 15 | const char* m_driver; // The name of the driver |
| 16 | Hack m_hack; // Which hack is it? |
| 17 | bool m_usehack; // Should it use the hack? |
| 18 | }; |
| 19 | |
| 20 | HackInfo g_known_hacks[] = { |
| 21 | { "Stormland.exe", nullptr, HACK_SAME_FOV_FOR_BOTH_EYES, true }, |
nothing calls this directly
no outgoing calls
no test coverage detected