view pytouhou/formats/__init__.py @ 609:23b9418e4b2f

Remove generic usage of GL_DRAW_FRAMEBUFFER which was introduced in GL 3.0 with framebuffer_blit.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 21 Dec 2014 18:10:23 +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