Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
301 B
4
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