all repos — Legends-RPG @ 5db3d7e67c6601aad8156f1f7ef88fceb69ad109

A fantasy mini-RPG built with Python and Pygame.

data/pytmx/constants.py (view raw)

 1# internal flags
 2TRANS_FLIPX = 1
 3TRANS_FLIPY = 2
 4TRANS_ROT = 4
 5
 6# Tiled gid flags
 7GID_TRANS_FLIPX = 1<<31
 8GID_TRANS_FLIPY = 1<<30
 9GID_TRANS_ROT   = 1<<29
10