Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- extends Node2D
- func _ready():
- pass
- func cheese_and_crackers(cheese_count,boxes_of_crackers):
- print("You have %d cheeses!" % cheese_count)
- print("You have %d boxes of crackers!" % boxes_of_crackers)
- pass
- func _on_Timer_timeout():
- cheese_and_crackers(4,8)
- pass # replace with function body
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement