CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/android/libs/MogaStubs/com/bda/controller/StateEvent.java
Views: 1401
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