How should input events be handled in a C# class, as with _input in a GDScript class? I would have expected public override void _Input(InputEvent event) { ... } to work, but when I try this I get an “Identifier expected” syntax error. Which is a very unexpected error, since the syntax looks to me like it should be valid?