| 97 | std::string LastLevelFilePath; |
| 98 | |
| 99 | unsigned char ReadUInt8() |
| 100 | { |
| 101 | unsigned char value = *(unsigned char*)CurrentDataPtr; |
| 102 | CurrentDataPtr += 1; |
| 103 | return value; |
| 104 | } |
| 105 | |
| 106 | short ReadInt16() |
| 107 | { |
no outgoing calls
no test coverage detected