Untitled

Anonymous
plain_text
10/12/2023 12:13 PM
404 B
18
Indexable
from direct.showbase.Showbase import Showbase
from mapmanager import Mapmanager


class GAme(Showbase):
    def __int__(self):
        Showbase.__init__(self)
        self.land = Mapmanage()
        self.land.loadLand('land,txt')
        base.camLens.setFov(90)


game = Game()
game.run
Editor is loading...