OpenHacknet/LoadedTexture.cs
2015-10-27 23:04:18 -04:00

13 lines
No EOL
240 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace Hacknet
{
public struct LoadedTexture
{
public string path { get; set; }
public Texture2D tex { get; set; }
public int retainCount { get; set; }
}
}