:D
This commit is contained in:
commit
09ade10207
117 changed files with 2153 additions and 0 deletions
21
eastern flames/scripts/msglang/msglang.gml
Normal file
21
eastern flames/scripts/msglang/msglang.gml
Normal file
|
@ -0,0 +1,21 @@
|
|||
function msglang(english, japanese=[txt()], language=global.lang) {
|
||||
return array_insert_array_parse(argument[language-1]);
|
||||
/*switch language {
|
||||
case LANGUAGE.ENGLISH:
|
||||
return array_insert_array_parse(english);
|
||||
break;
|
||||
case LANGUAGE.JAPANESE:
|
||||
return array_insert_array_parse(japanese);
|
||||
break;
|
||||
default:
|
||||
return [txt()];
|
||||
break;
|
||||
}*/
|
||||
}
|
||||
|
||||
|
||||
enum LANGUAGE {
|
||||
NULL,
|
||||
ENGLISH,
|
||||
JAPANESE,
|
||||
}
|
12
eastern flames/scripts/msglang/msglang.yy
Normal file
12
eastern flames/scripts/msglang/msglang.yy
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"isDnD": false,
|
||||
"isCompatibility": false,
|
||||
"parent": {
|
||||
"name": "data",
|
||||
"path": "folders/Scripts/data.yy",
|
||||
},
|
||||
"resourceVersion": "1.0",
|
||||
"name": "msglang",
|
||||
"tags": [],
|
||||
"resourceType": "GMScript",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue