blob: 94c2bda363d941613937969ce858702abd2ca286 (
plain)
1
2
3
4
5
6
7
8
9
|
using Godot;
public partial class AllReadOnly : GodotObject
{
public readonly string readonly_field = "foo";
public string readonly_auto_property { get; } = "foo";
public string readonly_property { get => "foo"; }
public string initonly_auto_property { get; init; }
}
|