sledgemapper/Sledgemapper/CachedContent.cs
Michele 98e5f6bc89
All checks were successful
continuous-integration/drone/push Build is passing
still moving code around
2021-09-15 23:28:30 +01:00

38 lines
754 B
C#

using Microsoft.Xna.Framework.Graphics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}