mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 08:48:00 +01:00
9 lines
161 B
Java
9 lines
161 B
Java
|
package com.brohoof.minelittlepony.renderer;
|
||
|
|
||
|
import com.brohoof.minelittlepony.model.PlayerModel;
|
||
|
|
||
|
public interface IRenderPony {
|
||
|
|
||
|
PlayerModel getPony();
|
||
|
}
|