BJ_Casino_Rank/src/script/HelloWorld.ts

29 lines
400 B
TypeScript
Raw Normal View History

2022-04-10 00:30:43 +08:00
export class HelloWorld {
//#region private
private _client: any;
//#endregion
//#region Lifecycle
/**
*
*/
constructor(client: any) {
this._client = client;
}
public HandleChangeString() {
this._client.msg.value = "ChangeString HelloWorld";
}
public AddCount() {
this._client.count.value++;
}
//#endregion
}