ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/OniSplit/ImporterTask.cs
Revision: 1114
Committed: Wed Jan 22 14:08:57 2020 UTC (5 years, 8 months ago) by iritscen
File size: 524 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 namespace Oni
2 {
3 internal struct ImporterTask
4 {
5 private readonly string filePath;
6 private readonly TemplateTag type;
7
8 public ImporterTask(string filePath)
9 : this(filePath, TemplateTag.NONE)
10 {
11 }
12
13 public ImporterTask(string filePath, TemplateTag type)
14 {
15 this.filePath = filePath;
16 this.type = type;
17 }
18
19 public string FilePath => filePath;
20 public TemplateTag Type => type;
21 }
22 }