Work on a simple programmatic approach to drawing hex maps.
This commit is contained in:
parent
7815a4ba48
commit
5494e18ea5
|
@ -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()
|
Loading…
Reference in New Issue