Mercurial > touhou
diff pytouhou/resource/loader.py @ 779:ee09657d3789
Replace the stage parser with the Rust one
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Sat, 08 Nov 2025 19:29:33 +0100 |
| parents | 816e1f01d650 |
| children | a30ce01b9154 |
line wrap: on
line diff
--- a/pytouhou/resource/loader.py +++ b/pytouhou/resource/loader.py @@ -13,7 +13,6 @@ ## from libtouhou import Loader as RustLoader -from pytouhou.formats.std import Stage from pytouhou.formats.ecl import ECL from pytouhou.formats.anm0 import ANM0 from pytouhou.formats.msg import MSG @@ -44,11 +43,6 @@ return anm - def get_stage(self, name): - file = self.get_file(name) - return Stage.read(file) #TODO: modular - - def get_ecl(self, name): file = self.get_file(name) return ECL.read(file) #TODO: modular
