diff src/X_supp.c @ 131:6a8588df68af

Tank can change direction and navigate on the mud area
author Thinker K.F. Li <thinker@branda.to>
date Wed, 17 Sep 2008 01:30:25 +0800
parents 17e97e92b76e
children 3efe77007127
line wrap: on
line diff
--- a/src/X_supp.c	Tue Sep 16 21:23:34 2008 +0800
+++ b/src/X_supp.c	Wed Sep 17 01:30:25 2008 +0800
@@ -489,3 +489,10 @@
 mb_tman_t *X_MB_tman(X_MB_runtime_t *xmb_rt) {
     return xmb_rt->tman;
 }
+
+ob_factory_t *X_MB_ob_factory(X_MB_runtime_t *xmb_rt) {
+    ob_factory_t *factory;
+
+    factory = rdman_get_ob_factory(xmb_rt->rdman);
+    return factory;
+}