feat: 버전 정보 페이지 추가

This commit is contained in:
2023-03-22 23:09:53 +09:00
parent b02911038b
commit bee4de377a
2 changed files with 13 additions and 2 deletions
+2
View File
@@ -18,6 +18,7 @@ export class GameConstStore {
>
>;
public readonly iActionKeyMap: Record<string, GameIActionCategory>;
public readonly version: string;
constructor(response: GetConstResponse) {
const data = response.data;
@@ -27,6 +28,7 @@ export class GameConstStore {
this.cityConstMap = Object.freeze(data.cityConstMap);
this.iActionInfo = Object.freeze(data.iActionInfo);
this.iActionKeyMap = Object.freeze(data.iActionKeyMap);
this.version = Object.freeze(data.version);
}
}