材质类型。

This commit is contained in:
liteng 2018-12-05 07:52:33 +08:00
parent 421d769753
commit 4fcd224f2c
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShadowEditor.Server.Material
{
/// <summary>
/// 材质类型
/// </summary>
public enum MaterialType
{
unknown, // 未知类型
}
}

View File

@ -120,6 +120,7 @@
<Compile Include="Helpers\MongoHelper.cs" />
<Compile Include="Helpers\PinYinHelper.cs" />
<Compile Include="Helpers\ZipHelper.cs" />
<Compile Include="Material\MaterialType.cs" />
<Compile Include="Mesh\EditMeshModel.cs" />
<Compile Include="Mesh\IMeshSaver.cs" />
<Compile Include="Mesh\MeshInfo.cs" />