comparison pytouhou/game/bullet.py @ 158:7769ce7be03c

Minor cleanup
author Thibaut Girka <thib@sitedethib.com>
date Mon, 10 Oct 2011 18:56:13 +0200
parents ebfd328e700c
children 7e7368356445
comparison
equal deleted inserted replaced
157:ca6f8b3f739d 158:7769ce7be03c
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 14
15 from math import cos, sin, atan2, pi 15 from math import cos, sin, atan2
16 16
17 from pytouhou.utils.interpolator import Interpolator 17 from pytouhou.utils.interpolator import Interpolator
18 from pytouhou.vm.anmrunner import ANMRunner 18 from pytouhou.vm.anmrunner import ANMRunner
19 from pytouhou.game.sprite import Sprite 19 from pytouhou.game.sprite import Sprite
20 20