mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-01-10 18:04:13 +00:00
9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
|
module Viewable{
|
||
|
export function loadResource(arg){
|
||
|
return Global.Resources.loadAsString(arg);
|
||
|
}
|
||
|
export function needRender(arg){
|
||
|
return true;
|
||
|
}
|
||
|
}
|