12345678910111213141516171819 |
- import { BattleBase } from "../base/BattleBase";
- import { BattleUtil } from "./BattleUtil";
- let IDIndex = 0;
- export class DataBase extends BattleBase {
-
- ID: number = BattleUtil.IndexID_Init;
- typeID: number = BattleUtil.TypeID_Init;
-
- _init() {
- this.ID = IDIndex++;
- }
-
- clear() {
- this.ID = BattleUtil.IndexID_Init;
- }
- }
|