okay fixed
parent
f610b58d40
commit
da44fe3daf
@ -0,0 +1,5 @@
|
|||||||
|
package net.brokenmoon.redcontrol.api;
|
||||||
|
|
||||||
|
public interface CpuControl {
|
||||||
|
CpuState getCpuState();
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package net.brokenmoon.redcontrol.api;
|
||||||
|
|
||||||
|
public enum CpuState {
|
||||||
|
RUNNING(0), STOPPED(7), RESET(14);
|
||||||
|
public final int offset;
|
||||||
|
CpuState(int off){offset = off;}
|
||||||
|
}
|
Loading…
Reference in New Issue