blob: 26afe01cd46b8619a82abc4adb7075530be59639 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
extends "res://scripts/panelLevelSwitch.gd"
func handle_correct():
# We don't call the base method because we want to suppress the original
# behaviour.
pass
func _handle_correct():
# We don't call the base method because we want to suppress the original
# behaviour.
pass
|