You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
11 lines
343 B
C#
11 lines
343 B
C#
namespace Godot.SourceGenerators.Sample
|
|
{
|
|
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; }
|
|
}
|
|
}
|