添加项目文件。

This commit is contained in:
GG Z
2026-02-23 16:55:06 +08:00
parent 7a0bf44207
commit 37217063b9
117 changed files with 4885 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System.Drawing;
namespace RevitTools.DrawTool
{
/// <summary>
/// 管理接口
/// </summary>
public interface IDisplay
{
void AddObj(DrawBase draw);
void Clear();
void DeleteObj(DrawBase db);
DrawBase GetObj(Point e);
void MoveAllObj(int dx, int dy);
void MoveObj(DrawBase db, int dx, int dy);
}
}