mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
7 lines
252 B
TypeScript
7 lines
252 B
TypeScript
![]() |
import { create_el } from "../../core/gui/dom";
|
||
|
import { ResizableView } from "../../core/gui/ResizableView";
|
||
|
|
||
|
export class TextureView extends ResizableView {
|
||
|
element = create_el("div", "viewer_TextureView", el => (el.textContent = "Texture"));
|
||
|
}
|