17 lines
369 B
Plaintext
17 lines
369 B
Plaintext
/*
|
|
文件名:DrawMainCustomUi_Fighter.nut
|
|
路径:DrawMainCustomUi/DrawMainCustomUi_Fighter.nut
|
|
创建日期:2022-09-04 20:19
|
|
文件用途:女格斗界面绘制函数
|
|
*/
|
|
function drawMainCustomUI_Fighter(obj) {
|
|
if (!obj)
|
|
return;
|
|
drawMainCustomUI_All(obj);
|
|
}
|
|
|
|
function drawCustomUI_Fighter(obj) {
|
|
if (!obj)
|
|
return;
|
|
drawCustomUI_All(obj);
|
|
} |