StructV2/src/View/container/freed.ts

11 lines
199 B
TypeScript

import { Container } from "./container";
/**
* 释放区可视化视图
*/
export class FreedContainer extends Container {
protected initBehaviors(): string[] {
return [];
}
};