2018-08-14 12:32:25 +08:00

23 lines
493 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>
/// 模型保存器接口
/// </summary>
public interface IMeshSaver
{
/// <summary>
/// 保存模型
/// </summary>
/// <param name="context">Web上下文环境</param>
/// <returns></returns>
Result Save(HttpContext context);
}
}