still moving code around
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michele 2021-09-15 23:28:30 +01:00
parent b8d27a2a6f
commit 98e5f6bc89
8 changed files with 168 additions and 218 deletions

View file

@ -9,6 +9,29 @@ 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; }
}