Moves XNA 4 files for Github migration.
This commit is contained in:
18
Plan B Html Parser/Nodes/HtmlImgNode.cs
Normal file
18
Plan B Html Parser/Nodes/HtmlImgNode.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PlanB.Html.Nodes
|
||||
{
|
||||
public class HtmlImgNode: HtmlNode
|
||||
{
|
||||
public static string StaticTagName { get { return "img"; } }
|
||||
public override string TagName { get { return StaticTagName; } }
|
||||
|
||||
public HtmlImgNode()
|
||||
{
|
||||
Type = HtmlNodeType.Img;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user