summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorjacksonmj <jacksonmj@jacksonmj.none>2011-01-09 19:23:05 (GMT)
committer jacksonmj <jacksonmj@jacksonmj.none>2011-01-09 19:23:05 (GMT)
commit144e4bdb6991a042f9b985a9719299f612420dd0 (patch)
tree3da5132fc731dea1334048c707f4c074e390a86c /includes
parent56a3ad373c126da22be05e4c5b64a446c7d7dff0 (diff)
downloadpowder-144e4bdb6991a042f9b985a9719299f612420dd0.zip
powder-144e4bdb6991a042f9b985a9719299f612420dd0.tar.gz
Begin cleanup of update functions
Diffstat (limited to 'includes')
-rw-r--r--includes/powder.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/powder.h b/includes/powder.h
index 47879fe..66816b0 100644
--- a/includes/powder.h
+++ b/includes/powder.h
@@ -286,6 +286,7 @@ int update_WTRV(UPDATE_FUNC_ARGS);
int update_YEST(UPDATE_FUNC_ARGS);
int update_MISC(UPDATE_FUNC_ARGS);
+int update_legacy_all(UPDATE_FUNC_ARGS);
struct particle
@@ -924,6 +925,12 @@ static void create_gain_photon(int pp);
void kill_part(int i);
#if defined(WIN32) && !defined(__GNUC__)
+extern _inline void part_change_type(int n, int x, int y, int t);
+#else
+extern inline void part_change_type(int i, int x, int y, int t);
+#endif
+
+#if defined(WIN32) && !defined(__GNUC__)
extern _inline int create_part(int p, int x, int y, int t);
#else
extern inline int create_part(int p, int x, int y, int t);