summaryrefslogtreecommitdiff
path: root/txtgameengine/twod/textures.py
blob: 01dde5299673eab33376b9b0c9b234e1f12cf79c (plain)
1
2
3
4
5
6
7
8
9
10
11
import typing

if typing.TYPE_CHECKING:
    from ..app import TxtGameApp


class Texture:
    def __init__(self, app: 'TxtGameApp', gl_texid: int):
        self.app = app
        self.gl_texid = gl_texid