initial commit

This commit is contained in:
2026-05-25 18:09:51 +02:00
commit df7219677e
58 changed files with 3646 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package pncdsl
type AssetKind int
const (
AssetImage AssetKind = iota
AssetAudio
AssetFont
)
type Asset struct {
Name string
Path string
Kind AssetKind
}
func (a Asset) GetName() string { return a.Name }
func (a Asset) TypeLabel() string { return "asset" }