Added renderer internal whatnot

This commit is contained in:
2024-08-02 13:56:10 -06:00
parent 328c496fbb
commit 72badd00c7
8 changed files with 105 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package renderer
import "fmt"
func render() {
fmt.Println("Test")
}
+9
View File
@@ -0,0 +1,9 @@
package renderer
import (
"testing"
)
func TestRender(t *testing.T) {
t.Error("Something wrong")
}