@civ-clone/core-city-build
Version:
The repo contains the `CityBuild` and associated objects that deal with building items in `City`s.
15 lines (14 loc) • 442 B
TypeScript
import {
EntityRegistry,
IEntityRegistry,
} from '@civ-clone/core-registry/EntityRegistry';
import { IBuildable } from './Buildable';
export declare class AvailableCityBuildItemsRegistry
extends EntityRegistry<IBuildable>
implements IEntityRegistry<IBuildable>
{
constructor();
accepts(entity: IBuildable): boolean;
}
export declare const instance: AvailableCityBuildItemsRegistry;
export default AvailableCityBuildItemsRegistry;