Initial commit

This commit is contained in:
Frank van der Heijden 2020-12-21 00:07:32 +01:00
commit 9c77777ff3
No known key found for this signature in database
GPG key ID: 26DA56488D314D11
22 changed files with 1561 additions and 0 deletions

View file

@ -0,0 +1,15 @@
package dev.frankheijden.minecraftreflection.cache;
import dev.frankheijden.minecraftreflection.MinecraftReflection;
import java.util.HashMap;
import java.util.Map;
public class ReflectionCache {
private static final Map<Class<?>, MinecraftReflection> cachedReflections = new HashMap<>();
public static Map<Class<?>, MinecraftReflection> getCachedReflections() {
return cachedReflections;
}
}