(string[] content)
| 29 | } |
| 30 | |
| 31 | void parse(string[] content) |
| 32 | { |
| 33 | // 读取文件版本号 |
| 34 | if (content.Length < 1 || content[0] != "Crazy Storm Data 1.01") |
| 35 | throw new InvalidFileFormat(content.Length, "文件格式无效,需要Crazy Storm 1.01版本"); |
| 36 | |
| 37 | // 读取中心数据 |
| 38 | |
| 39 | } |
| 40 | |
| 41 | public MBGParser(string path) |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected