Work on a simple programmatic approach to drawing hex maps.

This commit is contained in:
Dorian 2017-07-26 17:41:54 -04:00
parent 7815a4ba48
commit 5494e18ea5
1 changed files with 15 additions and 0 deletions

15
render_test/main.py Normal file
View File

@ -0,0 +1,15 @@
from kivy.app import App
from kivy.uix.widget import Widget
class HexMap(Widget):
pass
class HexMapApp(App):
def build(self):
return HexMap()
if __name__ == '__main__':
HexMapApp().run()