Minecraft-Console-Client/MinecraftClient/Cache/AuthCacheHandler.cs

13 lines
228 B
C#
Raw Normal View History

2016-03-01 19:20:05 -07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MinecraftClient.Cache
{
public static class AuthCacheHandler
{
public enum Type { NONE, MEMORY, DISK };
}
}