(self, count: int)
| 43 | return values |
| 44 | |
| 45 | def read_short_string_array(self, count: int): |
| 46 | values = [] |
| 47 | for _ in range(count): |
| 48 | length = self.read_ushort() |
| 49 | values.append(self.read_string(length)) |
| 50 | return values |
| 51 | |
| 52 | class LOCLanguageListEntry: |
| 53 | language_code_length: ctypes.c_ushort |
no test coverage detected