mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
11 lines
252 B
C#
11 lines
252 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace Godot.SourceGenerators.Sample
|
||
|
|
{
|
||
|
|
public partial class AllWriteOnly : GodotObject
|
||
|
|
{
|
||
|
|
bool writeonly_backing_field = false;
|
||
|
|
public bool writeonly_property { set => writeonly_backing_field = value; }
|
||
|
|
}
|
||
|
|
}
|