First cut at a game timer. Yet another backend function which
[sgt/puzzles] / net.c
diff --git a/net.c b/net.c
index 8793886..fa4c979 100644 (file)
--- a/net.c
+++ b/net.c
@@ -2568,6 +2568,11 @@ static int game_wants_statusbar(void)
     return TRUE;
 }
 
+static int game_timing_state(game_state *state)
+{
+    return TRUE;
+}
+
 #ifdef COMBINED
 #define thegame net
 #endif
@@ -2601,4 +2606,5 @@ const struct game thegame = {
     game_anim_length,
     game_flash_length,
     game_wants_statusbar,
+    FALSE, game_timing_state,
 };