aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/mondecitronne/homunculus/proxy/SkinHandlerProxy.java
blob: b56ba53841f3f1fbba2efbb3e71337142af8fd8c (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
package com.mondecitronne.homunculus.proxy;

import com.mojang.authlib.GameProfile;

public class SkinHandlerProxy {
	public class SkinOwner {
		private GameProfile playerProfile;
		
		SkinOwner(GameProfile playerProfileIn) {
			playerProfile = playerProfileIn;
		}
		
		public GameProfile getPlayerProfile() {
			return playerProfile;
		}
		
		public void loadSkin() {
		}
	}
	
	public SkinOwner createSkinOwner(GameProfile playerProfile) {
		return new SkinOwner(playerProfile);
	}
}