Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IResourceWriter.cs
Go to the documentation of this file.
1namespace System.Resources;
2
3public interface IResourceWriter : IDisposable
4{
5 void AddResource(string name, string? value);
6
7 void AddResource(string name, object? value);
8
9 void AddResource(string name, byte[]? value);
10
11 void Close();
12
13 void Generate();
14}
void AddResource(string name, string? value)
void AddResource(string name, byte[]? value)
void AddResource(string name, object? value)