Mercurial > touhou
comparison pytouhou/formats/anm0.py @ 204:88361534c77e
Add some documentation (argh, so much left to document!)
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Tue, 01 Nov 2011 13:46:03 +0100 |
parents | e7902309305c |
children | 741860192b56 |
comparison
equal
deleted
inserted
replaced
203:df8b2ab54639 | 204:88361534c77e |
---|---|
9 ## This program is distributed in the hope that it will be useful, | 9 ## This program is distributed in the hope that it will be useful, |
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 ## GNU General Public License for more details. | 12 ## GNU General Public License for more details. |
13 ## | 13 ## |
14 | |
15 """ANM0 files handling. | |
16 | |
17 This module provides classes for handling the ANM0 file format. | |
18 The ANM0 format is a format used in Touhou 6: EoSD to describe sprites | |
19 and animations. | |
20 Almost everything rendered in the game is described by an ANM0 file. | |
21 """ | |
14 | 22 |
15 from struct import pack, unpack | 23 from struct import pack, unpack |
16 from pytouhou.utils.helpers import read_string, get_logger | 24 from pytouhou.utils.helpers import read_string, get_logger |
17 | 25 |
18 | 26 |