summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators/MethodInfo.cs
Commit message (Collapse)AuthorAgeFilesLines
* Add `readonly` to C# methods and types that don't mutateRaul Santos2022-11-141-1/+1
| | | | Also removes a few unnecessary temp variables
* C#: Add source generator for signals as eventsIgnacio Roldán Etcheverry2022-08-221-0/+24
Changed the signal declaration signal to: ``` // The following generates a MySignal event [Signal] public delegate void MySignalEventHandler(int param); ```