source: OniSplit/Motoko/TextureImporterOptions.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: 422 bytes
RevLine 
[1114]1using System;
2using Oni.Akira;
3
4namespace Oni.Motoko
5{
6 internal class TextureImporterOptions
7 {
8 public string Name;
9 public int Width;
10 public int Height;
11 public TextureFormat? Format;
12 public TextureFlags Flags;
13 public GunkFlags GunkFlags;
14 public string EnvironmentMap;
15 public int Speed = 1;
16 public string[] Images;
17 }
18}
Note: See TracBrowser for help on using the repository browser.