Add mesh reading and conversion support

This commit is contained in:
Yukai Li 2021-03-17 03:18:15 -06:00
parent 65dc96c4d6
commit aa1277a4e1
25 changed files with 2212 additions and 9 deletions

13
LibDgf/Mesh/TdbFlags.cs Normal file
View 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,
}
}