ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/OniSplit/Metadata/MetaLink.cs
Revision: 1114
Committed: Wed Jan 22 14:08:57 2020 UTC (5 years, 8 months ago) by iritscen
File size: 401 byte(s)
Log Message:
Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File Contents

# Content
1 using System;
2
3 namespace Oni.Metadata
4 {
5 internal class MetaLink : MetaType
6 {
7 private TemplateTag tag;
8
9 internal MetaLink(TemplateTag tag)
10 {
11 this.tag = tag;
12
13 Name = "Link";
14 Size = 4;
15 }
16
17 public TemplateTag Tag
18 {
19 get
20 {
21 return tag;
22 }
23 }
24
25 public override void Accept(IMetaTypeVisitor visitor)
26 {
27 visitor.VisitLink(this);
28 }
29 }
30 }