thermodynamic v1

This commit is contained in:
zomseffen 2020-11-08 10:20:23 +01:00
parent 5168061d1b
commit 41761b7b56
16 changed files with 1025 additions and 212 deletions
WorldProvider

View file

@ -0,0 +1,10 @@
from Objects.World import World
class WorldProvider:
def __init__(self, programs):
self.world: World = World(10, 10, 10, 10, 10, 10, programs)
def update(self):
pass