mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
21 lines
433 B
C#
21 lines
433 B
C#
namespace UIXC;
|
|
|
|
public enum SourceLanguage
|
|
{
|
|
Xml, Asm
|
|
}
|
|
|
|
public static class SourceLanguageEx
|
|
{
|
|
public static string GetExtension(this SourceLanguage sourceLanguage)
|
|
{
|
|
return sourceLanguage switch
|
|
{
|
|
SourceLanguage.Xml => ".uix",
|
|
SourceLanguage.Asm => ".uixa",
|
|
|
|
_ => throw new ArgumentException("Invalid source langauge", nameof(sourceLanguage)),
|
|
};
|
|
}
|
|
}
|