publish
This commit is contained in:
parent
f38388896d
commit
2f62a1a123
67 changed files with 4545 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
|||
package de.spacecontrol.sc.dllwrapper;
|
||||
|
||||
public class ScBasicSettings implements Cloneable {
|
||||
public boolean mIsDom;
|
||||
|
||||
public int mTraSens;
|
||||
|
||||
public int mRotSens;
|
||||
|
||||
public int mNullRadius;
|
||||
|
||||
public int mBrightnessBlue;
|
||||
|
||||
public int mBrightnessDspl;
|
||||
|
||||
public ScBasicSettings clone() {
|
||||
try {
|
||||
return (ScBasicSettings)super.clone();
|
||||
} catch (CloneNotSupportedException cloneNotSupportedException) {
|
||||
cloneNotSupportedException.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public String convToString() {
|
||||
return "ScBasicSettings:\n" + Util.convToString(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Location: /opt/SpaceControl/lib/SC_DLL_Wrapper.jar!/de/spacecontrol/sc/dllwrapper/ScBasicSettings.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.2.1
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue