Skip to content

Commit

Permalink
Dedent example
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras committed Jan 2, 2024
1 parent 7350c25 commit 51b12ff
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions exercises/practice/robot-simulator/.meta/example.gd
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
class RobotSimulator:

var _pos: Vector2i
var _dir: String
var _pos: Vector2i
var _dir: String


var position: Vector2i:
get:
return _pos
var position: Vector2i:
get:
return _pos


var direction: String:
get:
return _dir
var direction: String:
get:
return _dir


func _init(position: Vector2i = Vector2i(0, 0), direction: String = 'north'):
Expand Down

0 comments on commit 51b12ff

Please sign in to comment.