still moving code around
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b8d27a2a6f
commit
98e5f6bc89
8 changed files with 168 additions and 218 deletions
|
@ -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; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue