Add feature #208 - Bungee texture packs.

This commit is contained in:
md_5
2013-03-19 11:54:13 +11:00
parent 87fcef0658
commit dfa47f740d
5 changed files with 40 additions and 1 deletions

View File

@@ -42,4 +42,9 @@ public class ListenerInfo
* transferred depending on the host they connect to.
*/
private final Map<String, String> forcedHosts;
/**
* Get the texture pack used for servers connected to this proxy. May be
* null.
*/
private final TexturePackInfo texturePack;
}

View File

@@ -0,0 +1,17 @@
package net.md_5.bungee.api.config;
import lombok.Data;
@Data
public class TexturePackInfo
{
/**
* The URL of the texture pack.
*/
private final String url;
/**
* The square dimension of this texture pack.
*/
private final int size;
}