11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
window.onload = function () {
|
|
|
|
let editor: BittMappEditor = new BittMappEditor({
|
|
canvas: <HTMLCanvasElement> document.getElementById("editor"),
|
|
canvasWidth: 640,
|
|
canvasHeight: 640,
|
|
width: 32,
|
|
height: 32
|
|
});
|
|
|
|
}; |