Working 1.6 modding (currently only forge)
This commit is contained in:
parent
c2c7293083
commit
ceca6959d2
35 changed files with 996 additions and 673 deletions
|
@ -9,4 +9,15 @@ OpSys OpSys_fromString(QString name)
|
|||
if(name == "osx")
|
||||
return Os_OSX;
|
||||
return Os_Other;
|
||||
}
|
||||
|
||||
QString OpSys_toString(OpSys name)
|
||||
{
|
||||
switch(name)
|
||||
{
|
||||
case Os_Linux: return "linux";
|
||||
case Os_OSX: return "osx";
|
||||
case Os_Windows: return "windows";
|
||||
default: return "other";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue