Add mesh reading and conversion support
This commit is contained in:
parent
65dc96c4d6
commit
aa1277a4e1
25 changed files with 2212 additions and 9 deletions
13
LibDgf/Mesh/TdbFlags.cs
Normal file
13
LibDgf/Mesh/TdbFlags.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace LibDgf.Mesh
|
||||
{
|
||||
[Flags]
|
||||
public enum TdbFlags : byte
|
||||
{
|
||||
None = 0,
|
||||
SkipBoundingBox = 1,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue