We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c1d99 commit 6521966Copy full SHA for 6521966
2 files changed
AssetRipper.Text.SourceGeneration/Get.cs
@@ -0,0 +1,18 @@
1
+namespace AssetRipper.Text.SourceGeneration;
2
+
3
+public readonly ref struct Get
4
+{
5
+ private readonly NamedBlock block;
6
7
+ public IndentedTextWriter Writer => block.Writer;
8
9
+ public Get(IndentedTextWriter writer)
10
+ {
11
+ block = new NamedBlock(writer, "get");
12
+ }
13
14
+ public void Dispose()
15
16
+ block.Dispose();
17
18
+}
AssetRipper.Text.SourceGeneration/Set.cs
+public readonly ref struct Set
+ public Set(IndentedTextWriter writer)
+ block = new NamedBlock(writer, "set");
0 commit comments