feat: nds render system

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

20
app/app.vue Normal file
View File

@@ -0,0 +1,20 @@
<script setup lang="ts">
import Background from "./components/screen/Background.vue";
</script>
<template>
<div class="wrapper">
<Screen>
<Background />
<ScreenStats />
</Screen>
</div>
</template>
<style>
.wrapper {
width: fit-content;
height: fit-content;
border: 1px solid red;
}
</style>