mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
23 lines
493 B
C#
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);
|
|
}
|
|
}
|