aboutsummaryrefslogtreecommitdiff
path: root/src/killLog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/killLog.c')
-rw-r--r--src/killLog.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/killLog.c b/src/killLog.c
new file mode 100644
index 0000000..81ad7c1
--- /dev/null
+++ b/src/killLog.c
@@ -0,0 +1,12 @@
+#include "killLog.h"
+#include "game.h"
+
+void initKillLog(KillLog * killLog) {
+ killLog->killCount = 0;
+}
+
+void pushKill(KillLog * killLog, Kill kill) {
+}
+
+void drawKillLog(KillLog * killLog) {
+}