Files
BusyRabbit/Plugins/UnrealSharp/Source/UnrealSharpManagedGlue/PropertyTranslators/SetPropertyTranslator.cs

13 lines
331 B
C#
Raw Normal View History

namespace UnrealSharpScriptGenerator.PropertyTranslators;
public class SetPropertyTranslator : ContainerPropertyTranslator
{
public SetPropertyTranslator()
: base("SetCopyMarshaller",
"SetReadOnlyMarshaller",
"SetMarshaller",
"IReadOnlySet",
"ISet")
{
}
}