Files
kiss-vscode/projects/asciilib2/examples/death-trap/source/DeathTrapLogic.kiss

9 lines
260 B
Plaintext

(defprop &mut firstDraw true)
(defmethod new [] 0)
(defmethod :Void update [:Float deltaSeconds] 0)
(defmethod :Void draw [:Void->Graphics graphics]
(when firstDraw
(set firstDraw false)
(.setBackgroundColor (graphics) 5 5 Colors.White)))