summaryrefslogtreecommitdiff
path: root/src/objects/obj_hoi.cpp
diff options
context:
space:
mode:
authortomsmeding <hallo@tomsmeding.nl>2015-11-02 06:55:15 +0100
committertomsmeding <hallo@tomsmeding.nl>2015-11-02 06:55:15 +0100
commitdcaa318d677a1a6881ccc87640ae75c0fc578bfb (patch)
tree3ff05dc8494d6629dddfde30f859e0c72e620926 /src/objects/obj_hoi.cpp
Initial
Diffstat (limited to 'src/objects/obj_hoi.cpp')
-rw-r--r--src/objects/obj_hoi.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/objects/obj_hoi.cpp b/src/objects/obj_hoi.cpp
new file mode 100644
index 0000000..fe3c3f1
--- /dev/null
+++ b/src/objects/obj_hoi.cpp
@@ -0,0 +1,11 @@
+EVENT(create){
+ x=y=10;
+}
+
+EVENT(step){
+ x++;
+}
+
+EVENT(draw){
+ draw_text(x,y,"yay!");
+}