aboutsummaryrefslogtreecommitdiff
path: root/src/killLog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/killLog.h')
-rw-r--r--src/killLog.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/killLog.h b/src/killLog.h
index 22f2962..b6e920a 100644
--- a/src/killLog.h
+++ b/src/killLog.h
@@ -4,9 +4,12 @@
#ifndef KILL_LOG_H
#define KILL_LOG_H
-#define KILL_LOG_MAX 5
+#define KILL_LOG_MAX 10
+#define KILL_MESSAGE_MAX 100
+#define KILL_LOG_FONT_SIZE 16
typedef struct Kill {
+ EntityType type;
EntityId id;
EntityFingerprint fingerPrint;
double timeAtKill;
@@ -18,7 +21,8 @@ typedef struct KillLog {
} KillLog;
void initKillLog(KillLog * killLog);
-void pushKill(KillLog * killLog, Kill kill);
-void drawKillLog(KillLog * killLog);
+void pushKill(KillLog * killLog, Entity entity);
+void drawKillLog(KillLog * killLog, Vector2 position);
+void resetKillLog(KillLog * killLog);
#endif