コード例 #1
0
ファイル: boss.py プロジェクト: nhandler/cs429
    def to_json(self):
        '''
        Serialize the important members of this class as a json object
        '''
        json = ShooterSprite.to_json(self)
        json['health'] = 50

        return json