mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-24 20:57:12 +01:00
14 lines
256 B
Java
14 lines
256 B
Java
package com.minelittlepony.ducks;
|
|
|
|
import com.minelittlepony.model.ModelWrapper;
|
|
|
|
/**
|
|
* I Render Pony now, oky?
|
|
*/
|
|
public interface IRenderPony {
|
|
|
|
/**
|
|
* Gets the wrapped pony model for this renderer.
|
|
*/
|
|
ModelWrapper getPlayerModel();
|
|
}
|