You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
420 B
C#
21 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
using Duality.Editor;
|
|
|
|
namespace Protect_the_Core_Revamped.Editor
|
|
{
|
|
/// <summary>
|
|
/// Defines a Duality editor plugin.
|
|
/// </summary>
|
|
public class Protect_the_Core_RevampedEditorPlugin : EditorPlugin
|
|
{
|
|
public override string Id
|
|
{
|
|
get { return "Protect_the_Core_RevampedEditorPlugin"; }
|
|
}
|
|
}
|
|
}
|