summaryrefslogtreecommitdiff
path: root/src/rototiller.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2018-12-30 17:28:04 -0800
committerVito Caputo <vcaputo@pengaru.com>2018-12-30 17:34:44 -0800
commit5f675b0b7f7b884cf67785462bfe50ab2e8099e3 (patch)
tree737dd083608b7db88019ed5f6586f6b2c118ad3f /src/rototiller.c
parent2436fde1cfe091db740f15665822e18295a7f8de (diff)
modules/submit: add cellular automata game module
This module displays realtime battle for domination simulated as 2D cellular automata. This is just a test of the backend piece for a work-in-progress multiplayer game idea. The visuals were kind of interesting to watch so I figured may as well merge it as a module to share. Enjoy! PS: the results can vary a lot by tweaking the defines in submit.c
Diffstat (limited to 'src/rototiller.c')
-rw-r--r--src/rototiller.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rototiller.c b/src/rototiller.c
index 45bde84..ad3b215 100644
--- a/src/rototiller.c
+++ b/src/rototiller.c
@@ -38,6 +38,7 @@ extern rototiller_module_t roto64_module;
extern rototiller_module_t ray_module;
extern rototiller_module_t sparkler_module;
extern rototiller_module_t stars_module;
+extern rototiller_module_t submit_module;
static rototiller_module_t *modules[] = {
&roto32_module,
@@ -47,6 +48,7 @@ static rototiller_module_t *modules[] = {
&stars_module,
&plasma_module,
&julia_module,
+ &submit_module,
};
© All Rights Reserved