14 lines
524 B
TypeScript
14 lines
524 B
TypeScript
|
import { TableManager } from "../TableManager";
|
|||
|
import { StringExampleTableRow, StringTableExample } from "./Tables/StringTableExample";
|
|||
|
|
|||
|
const { ccclass } = cc._decorator;
|
|||
|
|
|||
|
@ccclass
|
|||
|
export default class CSSettingsV3Example {
|
|||
|
|
|||
|
private static _stringExample: StringTableExample;
|
|||
|
/** 共用_字串表#string.xlsx */
|
|||
|
public static get StringExample(): StringTableExample { return this._stringExample = this._stringExample || TableManager.InitTable("#string", StringTableExample, StringExampleTableRow); }
|
|||
|
|
|||
|
}
|