You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
497 B
21 lines
497 B
1 week ago
|
|
||
|
|
||
|
export default class GMManager{
|
||
|
public static GMToggle_AllGameOpen:boolean = false
|
||
|
public static GMToggle_ShangRenDingDan10:boolean = false
|
||
|
public static GMToggle_DlsFinish:boolean = false
|
||
|
|
||
|
public static getToggleStatus_DlsFinish(){
|
||
|
return this.GMToggle_DlsFinish
|
||
|
}
|
||
|
|
||
|
public static getToggleStatus_SRDD10(){
|
||
|
return this.GMToggle_ShangRenDingDan10
|
||
|
}
|
||
|
public static getToggleStatus_AllGameOpen(){
|
||
|
return this.GMToggle_AllGameOpen
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|