sledgemapper/Sledgemapper/CachedContent.cs
Michele Scandura b671c661a7
All checks were successful
continuous-integration/drone/push Build is passing
cleanup and sentry integration
2021-09-16 10:30:44 +01:00

34 lines
638 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace Sledgemapper
{
public class CachedContent
{
private static readonly CachedContent instance = new CachedContent();
// Explicit static constructor to tell C# compiler
// not to mark type as beforefieldinit
static CachedContent()
{
}
private CachedContent()
{
}
public static CachedContent Instance
{
get
{
return instance;
}
}
public Texture2D Eye { get; set; }
public Texture2D Location { get; set; }
}
}