mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
13 lines
No EOL
240 B
C#
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; }
|
|
}
|
|
} |