Cache settings are written and parsed.

This commit is contained in:
initsuj 2016-03-01 19:20:05 -07:00 committed by Justin Slauson
parent b10e3e8521
commit 1a41c42ba9
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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 };
}
}