Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/android/libs/MogaStubs/com/bda/controller/StateEvent.java
3195 views
1
package com.bda.controller;
2
3
public class StateEvent {
4
public static final int STATE_POWER_LOW = 0;
5
public static final int STATE_CONNECTION = 1;
6
7
public static final int ACTION_FALSE = 0;
8
public static final int ACTION_TRUE = 1;
9
public static final int ACTION_DISCONNECTED = 2;
10
public static final int ACTION_CONNECTING = 3;
11
public static final int ACTION_CONNECTED = 4;
12
13
public int getAction() {
14
return 0;
15
}
16
public int getState() {
17
return 0;
18
}
19
}
20
21