24 lines
427 B
C#
24 lines
427 B
C#
|
|
namespace TH1Resource
|
|
{
|
|
public class ResourceCache
|
|
{
|
|
|
|
public SpriteCache SpriteCache;
|
|
public AnimCache AnimCache;
|
|
|
|
public ResourceCache()
|
|
{
|
|
SpriteCache = new SpriteCache();
|
|
AnimCache = new AnimCache();
|
|
}
|
|
|
|
public void Init()
|
|
{
|
|
SpriteCache.Init();
|
|
AnimCache.Init();
|
|
}
|
|
}
|
|
|
|
}
|