diff options
| author | Nikolaus Gotsche <n@softwarefools.com> | 2017-10-02 03:00:34 +0200 |
|---|---|---|
| committer | Nikolaus Gotsche <n@softwarefools.com> | 2017-10-02 03:00:34 +0200 |
| commit | b4d150602df5b9a61a3d3b1084524c9317c55cde (patch) | |
| tree | ff02fad70fb2306cf5486a104b448535294b90b2 /engine.go | |
| parent | 7a38dbeffad2899a6dab74ec9a491e7e7807ba9b (diff) | |
iengine.go - Here comes all the Mapcration and Action calculus
adde maps and stuff
Diffstat (limited to 'engine.go')
| -rw-r--r-- | engine.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engine.go b/engine.go new file mode 100644 index 0000000..3186f5f --- /dev/null +++ b/engine.go @@ -0,0 +1,8 @@ +package main + + +func getNewArea(x,y int, nam string) Area { + myArea := Area{x,y,0,nam,0,0} + return myArea + +} |
