Mercurial > touhou
view pytouhou/formats/__init__.py @ 789:b5bca9274335
utils: Make some math functions const
Sadly f32::sqrt() isn’t const, so we can’t make normalize() const nor any
function which depends on it.
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Sun, 04 Jan 2026 11:49:03 +0100 |
| 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
