| 1234567891011121314151617181920212223 |
- /** 工厂数据类 */
- import { ProductType } from "../../game/data/GameData";
- import { FactoryIcon } from "./FactoryIcon";
- const { ccclass } = cc._decorator;
- @ccclass
- export default class FactorySystem {
- private _currSelectFactory: FactoryIcon = null;
- public set currSelectFactory(factory: FactoryIcon) {
- this._currSelectFactory = factory;
- }
- public get currSelectFactory(): FactoryIcon {
- return this._currSelectFactory;
- }
- public make(id: number): void {
- this._currSelectFactory && this._currSelectFactory.make(id);
- }
- }
|