Devan-Kerman / ARRP

A fabric api for creating resources and assets at runtime
Mozilla Public License 2.0
101 stars 25 forks source link

【BUG】No Access for JFrame#time #70

Closed Phoupraw closed 2 years ago

Phoupraw commented 2 years ago
public class JFrame implements Cloneable {
    private final int index;
    private Integer time; // **How to access this?**

    /**
     * @see JAnimation#frame(int)
     */
    public JFrame(int index) {this.index = index;}

    @Override
    public JFrame clone() {
        try {
            return (JFrame) super.clone();
        } catch (CloneNotSupportedException e) {
            throw new InternalError(e);
        }
    }
}
Devan-Kerman commented 2 years ago

oh lol, will fix