publish
This commit is contained in:
parent
f38388896d
commit
2f62a1a123
67 changed files with 4545 additions and 0 deletions
43
SC_DLL_Wrapper/de/spacecontrol/sc/dllwrapper/ScAdvSens.java
Normal file
43
SC_DLL_Wrapper/de/spacecontrol/sc/dllwrapper/ScAdvSens.java
Normal file
|
@ -0,0 +1,43 @@
|
|||
package de.spacecontrol.sc.dllwrapper;
|
||||
|
||||
public class ScAdvSens implements Cloneable {
|
||||
public int mXSens;
|
||||
|
||||
public int mYSens;
|
||||
|
||||
public int mZSens;
|
||||
|
||||
public int mASens;
|
||||
|
||||
public int mBSens;
|
||||
|
||||
public int mCSens;
|
||||
|
||||
public ScAdvSens clone() {
|
||||
try {
|
||||
return (ScAdvSens)super.clone();
|
||||
} catch (CloneNotSupportedException cloneNotSupportedException) {
|
||||
cloneNotSupportedException.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public void setToDefaults() {
|
||||
this.mXSens = 7;
|
||||
this.mYSens = 7;
|
||||
this.mZSens = 7;
|
||||
this.mASens = 7;
|
||||
this.mBSens = 7;
|
||||
this.mCSens = 7;
|
||||
}
|
||||
|
||||
public String convToString() {
|
||||
return "ScAdvSens:\n" + Util.convToString(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Location: /opt/SpaceControl/lib/SC_DLL_Wrapper.jar!/de/spacecontrol/sc/dllwrapper/ScAdvSens.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.2.1
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue