Skip to content

Commit

Permalink
Added VoidElementNode
Browse files Browse the repository at this point in the history
  • Loading branch information
microdee committed Jun 1, 2018
1 parent ec90247 commit 54daeb8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions BasicElementNodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@
namespace Notuiv
{

[PluginInfo(
Name = "Void",
Category = "Notui.ElementPrototype",
Version = "Join",
Author = "microdee"
)]
public class VoidElementNode : AbstractElementNode<VoidElementPrototype>
{
protected override VoidElementPrototype ConstructPrototype(int i, string id)
{
return new VoidElementPrototype(string.IsNullOrWhiteSpace(id) ? null : id);
}
}

[PluginInfo(
Name = "Plane",
Category = "Notui.ElementPrototype",
Expand Down

0 comments on commit 54daeb8

Please sign in to comment.