source: framspy/gui/visual/player.py @ 1198

Last change on this file since 1198 was 1198, checked in by Maciej Komosinski, 15 months ago

Added simple Python GUI for Framsticks library/server

File size: 173 bytes
Line 
1from gui.visual.entity import Entity
2
3class Player(Entity):
4    def __init__(self, x, y, z, rotX, rotY, rotZ):
5        super().__init__(x, y, z, 0, [], rotX, rotY, rotZ)
Note: See TracBrowser for help on using the repository browser.