Files
Pilz/Pilz.Simple3DFileParser/Other/LoaderOptions.vb
Pascal Schedel 2f09834fa0 190607 c1
- Add Pilz.Drawing.Drawing3D.OpenGLFactory
- Fix small bugs in Pilz.UI.PaintingControl
2019-06-07 20:56:19 +02:00

15 lines
318 B
VB.net

Public Class LoaderOptions
Public Property LoadMaterials As Boolean = False
Public Property UpAxis As UpAxis = False
Public Sub New()
End Sub
Public Sub New(loadMaterials As Boolean, upAxis As UpAxis)
Me.LoadMaterials = loadMaterials
Me.UpAxis = upAxis
End Sub
End Class