Mercurial > touhou
comparison pytouhou/formats/ecl.py @ 615:d1f0bb0b7a17
Don’t inherit explicitely from object, we are not on Python 2.7 anymore. :)
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sat, 28 Mar 2015 21:40:51 +0100 |
parents | eef492100f4c |
children | d18c0bf11138 |
comparison
equal
deleted
inserted
replaced
614:2cf518129725 | 615:d1f0bb0b7a17 |
---|---|
24 | 24 |
25 from pytouhou.utils.helpers import get_logger | 25 from pytouhou.utils.helpers import get_logger |
26 | 26 |
27 logger = get_logger(__name__) | 27 logger = get_logger(__name__) |
28 | 28 |
29 class ECL(object): | 29 class ECL: |
30 """Handle Touhou 6 ECL files. | 30 """Handle Touhou 6 ECL files. |
31 | 31 |
32 ECL files are binary script files used to describe the behavior of enemies. | 32 ECL files are binary script files used to describe the behavior of enemies. |
33 They are basically composed of a header and two additional sections. | 33 They are basically composed of a header and two additional sections. |
34 The first section is a list of subroutines, each composed of a list of timed | 34 The first section is a list of subroutines, each composed of a list of timed |