typed-adventureland
Version:
Strong TypeScript declarations for the game AdventureLand
8 lines (7 loc) • 395 B
TypeScript
export type TilesetKey = "ash" | "beach" | "castle" | "custom" | "custom_a" | "custom2" | "dark" | "doors" | "dungeon" | "fort" | "house" | "inside" | "jungle" | "licht" | "lights" | "new" | "outside" | "puzzle" | "ruins" | "ship" | "stands" | "tree" | "water" | "winter";
export interface GTileset {
file: string;
frames?: number;
frame_width?: number;
light?: string;
}