19 lines
379 B
Plaintext
19 lines
379 B
Plaintext
/*
|
|
文件名:DrawMainCustomUi_ATFighter.nut
|
|
路径:DrawMainCustomUi/DrawMainCustomUi_ATFighter.nut
|
|
创建日期:2022-09-04 20:18
|
|
文件用途:男格斗界面绘制函数
|
|
*/
|
|
function drawMainCustomUI_ATFighter(obj) {
|
|
if (!obj)
|
|
return;
|
|
drawMainCustomUI_All(obj);
|
|
}
|
|
|
|
|
|
|
|
function drawCustomUI_ATFighter(obj) {
|
|
if (!obj)
|
|
return;
|
|
drawCustomUI_All(obj);
|
|
} |