aboutsummaryrefslogtreecommitdiff
path: root/fns.h
diff options
context:
space:
mode:
Diffstat (limited to 'fns.h')
-rw-r--r--fns.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/fns.h b/fns.h
index af78e5e..f7276e8 100644
--- a/fns.h
+++ b/fns.h
@@ -1,4 +1,4 @@
-#define FPS2MS(fps) (1000/(fps))
+#define HZ2MS(hz) (1000/(hz))
/*
* alloc
@@ -37,3 +37,9 @@ Party *newparty(Player[2]);
void delparty(Party*);
void addparty(Party*);
+/*
+ * universe
+ */
+Universe *newuniverse(void);
+void deluniverse(Universe*);
+void inituniverse(Universe*);