source: OniSplit/ImporterTask.cs

Last change on this file was 1114, checked in by iritscen, 5 years ago

Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File size: 524 bytes
RevLine 
[1114]1namespace 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}
Note: See TracBrowser for help on using the repository browser.