Mercurial > touhou
view pytouhou/formats/__init__.py @ 777:11249e4b4e03
Rust: Bump dependencies which require no code change
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Tue, 14 Oct 2025 12:42:06 +0000 |
| parents | 70e2ed71b09c |
| children |
line wrap: on
line source
"""Touhou games file formats handling. This package provides modules to handle the various proprietary file formats used by Touhou games. """ class WrongFormatError(Exception): pass class ChecksumError(Exception): pass
