aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/pond.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/pond.h')
-rw-r--r--src/entities/pond.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/entities/pond.h b/src/entities/pond.h
new file mode 100644
index 0000000..c041eb1
--- /dev/null
+++ b/src/entities/pond.h
@@ -0,0 +1,13 @@
+#include "game.h"
+#include "entity.h"
+
+#ifndef POND_H
+#define POND_H
+
+#define POND_SIZE 250.0
+#define POND_HEIGHT 15.0
+
+void initPond(Entity* entity);
+void updatePond(Entity* entity, Game* game);
+
+#endif