First commit

This commit is contained in:
Leijurv
2018-08-01 11:34:35 -04:00
commit f559e45f9c
50 changed files with 9042 additions and 0 deletions

23
util/ManagerTick.java Normal file
View File

@@ -0,0 +1,23 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package baritone.util;
/**
*
* @author avecowa
*/
public abstract class ManagerTick extends Manager {
public static boolean tickPath = false;
@Override
protected final void onTick() {
if (tickPath) {
if (onTick0()) {
tickPath = false;
}
}
}
protected abstract boolean onTick0();
}