bad RPG AI

This commit is contained in:
2021-03-09 19:57:03 -07:00
parent 652b83242e
commit 96d5e68ac3
5 changed files with 63 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
(defprop &mut :Float->Void activeState null)
(defmethod new [:Float->Void initialState]
(set activeState initialState)
(return))
(defmethod update [:Float elapsed]
(activeState elapsed)
(return))