Ryujinx-GtkSharp/generator/UnionGen.cs

19 lines
240 B
C#
Raw Normal View History

using System.Xml;
namespace GtkSharp.Generation
{
public class UnionGen : StructBase {
public UnionGen (XmlElement ns, XmlElement elem) : base (ns, elem)
{
}
public override bool Union {
get {
return true;
}
}
}
}