1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-20 22:25:24 +00:00
OpenDiablo2/d2core/d2render/render_type.go
Tim Sarbin 2461142fbd
Minor changes to project layout (#276)
* Minor changes to reduce interdependencies on modules.
2020-01-31 23:18:11 -05:00

9 lines
120 B
Go

package d2render
// Defines the type of rendering engine to use
type RenderType int
const (
Ebiten = RenderType(1)
)