mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 02:25:40 +00:00
747a4ad871
Also removed all assumptions for parameters when ParserVersion >= 3
19 lines
240 B
C#
19 lines
240 B
C#
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|