using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DotNet.Revit.Hook.Achieve { /// /// 线程鼠标Hook. /// /// public class MouseHook : MouseHookBase { public MouseHook(int threadId = 0) : base(threadId) { } } }