convert VB to C#
This commit is contained in:
19
Pilz.Simple3DFileParser/Other/LoaderOptions.cs
Normal file
19
Pilz.Simple3DFileParser/Other/LoaderOptions.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
namespace Pilz.S3DFileParser
|
||||
{
|
||||
public class LoaderOptions
|
||||
{
|
||||
public bool LoadMaterials { get; set; } = false;
|
||||
public UpAxis UpAxis { get; set; } = UpAxis.Y;
|
||||
|
||||
public LoaderOptions()
|
||||
{
|
||||
}
|
||||
|
||||
public LoaderOptions(bool loadMaterials, UpAxis upAxis)
|
||||
{
|
||||
LoadMaterials = loadMaterials;
|
||||
UpAxis = upAxis;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user