(path, callback)
| 215 | |
| 216 | @staticmethod |
| 217 | def importCharacter(path, callback): |
| 218 | thread = CharacterImportThread(path, callback) |
| 219 | pyfalog.debug("Starting import character thread.") |
| 220 | thread.start() |
| 221 | |
| 222 | @staticmethod |
| 223 | def all0(): |
nothing calls this directly
no test coverage detected