mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
21 lines
394 B
C#
21 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Web;
|
|
|
|
namespace ShadowEditor.Server.Mesh
|
|
{
|
|
/// <summary>
|
|
/// binary模型保存
|
|
/// </summary>
|
|
public class BinaryMeshSaver : IMeshSaver
|
|
{
|
|
public MeshInfo Save(HttpContext Context)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|