mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 22:15:48 +00:00
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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|