You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
526 B
26 lines
526 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using Autodesk.AutoCAD.DatabaseServices;
|
|
using Autodesk.AutoCAD.Runtime;
|
|
using Autodesk.AutoCAD.Geometry;
|
|
using Autodesk.AutoCAD.ApplicationServices;
|
|
using Autodesk.AutoCAD.EditorInput;
|
|
using Autodesk.AutoCAD.Windows;
|
|
|
|
namespace HelloTeamcenter.hello
|
|
{
|
|
class MyExtension:Autodesk.AutoCAD.Runtime.IExtensionApplication
|
|
{
|
|
public void Initialize()
|
|
{
|
|
|
|
}
|
|
public void Terminate()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|