Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDesignerOptionService.cs
Go to the documentation of this file.
2
4
5public interface IDesignerOptionService
6{
7 [RequiresUnreferencedCode("The option value's Type cannot be statically discovered.")]
8 object? GetOptionValue(string pageName, string valueName);
9
10 [RequiresUnreferencedCode("The option value's Type cannot be statically discovered.")]
11 void SetOptionValue(string pageName, string valueName, object value);
12}
void SetOptionValue(string pageName, string valueName, object value)
object? GetOptionValue(string pageName, string valueName)