mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
7 lines
215 B
TypeScript
7 lines
215 B
TypeScript
import { ResizableView } from "../../core/gui/ResizableView";
|
|
import { create_element } from "../../core/gui/dom";
|
|
|
|
export class NpcCountsView extends ResizableView {
|
|
readonly element = create_element("div");
|
|
}
|