This commit is contained in:
fd
2015-02-16 17:05:01 -05:00
parent e02b195b71
commit c48008d2a3
7 changed files with 70 additions and 66 deletions

View File

@@ -297,8 +297,11 @@ public class OsuHitObject {
*/
public boolean isNewCombo() { return (type & TYPE_NEWCOMBO) > 0; }
/**
* Returns the number of extra skips on the combo colours
*/
public int getComboSkip() {
return (type>>4);
return (type >> 4);
}
}