mirror of
https://github.com/bloeys/nmage.git
synced 2025-12-29 13:28:20 +00:00
13 lines
239 B
Go
Executable File
13 lines
239 B
Go
Executable File
package renderer
|
|
|
|
import (
|
|
"github.com/bloeys/gglm/gglm"
|
|
"github.com/bloeys/nmage/materials"
|
|
"github.com/bloeys/nmage/meshes"
|
|
)
|
|
|
|
type Render interface {
|
|
Draw(mesh *meshes.Mesh, trMat *gglm.TrMat, mat *materials.Material)
|
|
FrameEnd()
|
|
}
|