UltimateZoneBuilder/Source/Images/ResourceLocation.cs

59 lines
1.3 KiB
C#
Raw Normal View History

2007-06-14 23:31:57 +00:00
#region ================== Copyright (c) 2007 Pascal vd Heiden
/*
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
* This program is released under GNU General Public License
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#endregion
#region ================== Namespaces
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
#endregion
2007-09-25 05:57:42 +00:00
namespace CodeImp.DoomBuilder.Images
2007-06-14 23:31:57 +00:00
{
internal struct ResourceLocation
{
// Constants
public const int RESOURCE_WAD = 0;
public const int RESOURCE_DIRECTORY = 1;
// Members
public int type;
public string location;
public bool textures;
public bool flats;
// Constructor
public ResourceLocation(int type, string location, bool textures, bool flats)
{
// Initialize
this.type = type;
this.location = location;
this.textures = textures;
this.flats = flats;
}
// This displays the struct as string
public override string ToString()
{
// Simply show location
return location;
}
}
}