OpenHacknet/LoadedTexture.cs

13 lines
240 B
C#
Raw Normal View History

2015-10-27 23:04:18 -04:00
using Microsoft.Xna.Framework.Graphics;
2015-10-27 22:34:58 -04:00
namespace Hacknet
{
public struct LoadedTexture
{
public string path { get; set; }
public Texture2D tex { get; set; }
public int retainCount { get; set; }
}
}