sledgemapper/Sledgemapper/CachedContent.cs
Michele 3b505141e6
All checks were successful
continuous-integration/drone/push Build is passing
fixing build
2021-09-07 23:43:46 +01:00

15 lines
318 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
{
public Texture2D Eye { get; set; }
public Texture2D Location { get; set; }
}
}