Skip to content

Commit

Permalink
Implement more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
SaturnHafen committed Feb 1, 2024
1 parent 7d7e36d commit 632b4da
Show file tree
Hide file tree
Showing 5 changed files with 417 additions and 166 deletions.
14 changes: 14 additions & 0 deletions prototypes/game-robot-programming/code13.gd
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
extends Node2D


func get_code():
return "condition-true"

func get_stmts():
return []

func is_condition():
return true

func check(_robot):
return true
11 changes: 11 additions & 0 deletions prototypes/game-robot-programming/code14.gd
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
extends Node2D


func get_code():
return "rotate-right"

func get_stmts():
return []

func is_condition():
return false
Loading

0 comments on commit 632b4da

Please sign in to comment.