diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d5c94f --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# Swap Files +*.swp + +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe + +# Test Database +test.db \ No newline at end of file diff --git a/cursor.go b/cursor.go new file mode 100644 index 0000000..b3b5aa4 --- /dev/null +++ b/cursor.go @@ -0,0 +1,6 @@ +package main + +type Cursor struct { + x int + y int +} diff --git a/util.go b/util.go new file mode 100644 index 0000000..06ab7d0 --- /dev/null +++ b/util.go @@ -0,0 +1 @@ +package main