feat: nds render system

This commit is contained in:
2025-11-09 16:20:30 +01:00
parent ed8e35b1d7
commit 46debb815d
31 changed files with 6017 additions and 2898 deletions

View File

@@ -0,0 +1,6 @@
<script lang="ts" setup>
useRender((ctx) => {
ctx.fillStyle = "green";
ctx.fillRect(0, 0, 100, 100);
});
</script>