Java Code Examples for org.lwjgl.glfw.GLFW#GLFW_KEY_I

The following examples show how to use org.lwjgl.glfw.GLFW#GLFW_KEY_I . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CrystalAura.java    From bleachhack-1.14 with GNU General Public License v3.0 5 votes vote down vote up
public CrystalAura() {
	super("CrystalAura", GLFW.GLFW_KEY_I, Category.COMBAT, "Automatically attacks crystals for you.",
			new SettingToggle("Aimbot", false),
			new SettingToggle("Thru Walls", false),
			new SettingSlider("Range: ", 0, 6, 4.25, 2),
			new SettingSlider("CPS: ", 0, 20, 16, 0));
}
 
Example 2
Source File: CrystalAura.java    From bleachhack-1.14 with GNU General Public License v3.0 5 votes vote down vote up
public CrystalAura() {
	super("CrystalAura", GLFW.GLFW_KEY_I, Category.COMBAT, "Automatically attacks crystals for you.",
			new SettingToggle("Aimbot", false),
			new SettingToggle("Thru Walls", false),
			new SettingSlider("Range: ", 0, 6, 4.25, 2),
			new SettingSlider("CPS: ", 0, 20, 16, 0));
}
 
Example 3
Source File: CrystalAura.java    From bleachhack-1.14 with GNU General Public License v3.0 5 votes vote down vote up
public CrystalAura() {
	super("CrystalAura", GLFW.GLFW_KEY_I, Category.COMBAT, "Automatically attacks crystals for you.",
			new SettingToggle("Aimbot", false),
			new SettingToggle("Thru Walls", false),
			new SettingSlider("Range: ", 0, 6, 4.25, 2),
			new SettingSlider("CPS: ", 0, 20, 16, 0));
}
 
Example 4
Source File: CrystalAura.java    From bleachhack-1.14 with GNU General Public License v3.0 4 votes vote down vote up
public CrystalAura() {
	super("CrystalAura", GLFW.GLFW_KEY_I, Category.COMBAT, "Automatically attacks crystals for you.", settings);
}