mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
6 lines
253 B
C#
6 lines
253 B
C#
namespace CodeImp.DoomBuilder.GZBuilder.Data {
|
|
public struct TextureData {
|
|
public const string INVALID_TEXTURE = "**invalid_texture**";
|
|
public static string[] SUPPORTED_TEXTURE_EXTENSIONS = { ".jpg", ".tga", ".png", ".dds", ".pcx" };
|
|
}
|
|
}
|