aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/mondecitronne/homunculus/GameProfileFetcher.java
blob: 8591635dd5248e1b8aa64b13340bb3fc16b98fd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.mondecitronne.homunculus;

import javax.annotation.Nullable;
import com.mojang.authlib.GameProfile;

public class GameProfileFetcher {
	@Nullable
	private GameProfile profile;
    
    public static void initProfileCache() {
    }
	
	public GameProfileFetcher(GameProfile profileIn) {
		dispatchFetchProfile(profileIn);
	}
	
	@Nullable
	public GameProfile getGameProfile() {
		synchronized (this) {
			return profile;
		}
	}
	
    private static void dispatchFetchProfile(GameProfile profileIn) {
    }
}