Skip to content

Commit

Permalink
Added button state class (#38)
Browse files Browse the repository at this point in the history
* added button state class

* Update build.gradle
  • Loading branch information
BBScholar authored Feb 15, 2019
1 parent f9ea438 commit 3e7a0d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
}

group = 'org.team5499'
version = '2.6.3'
version = '2.7.0'

task sourcesJar(type: Jar) {
from sourceSets.main.allJava
Expand Down
3 changes: 3 additions & 0 deletions src/main/kotlin/org/team5499/monkeyLib/input/ButtonState.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package org.team5499.monkeyLib.input

public data class ButtonState(val down: Boolean, val pressed: Boolean, val released: Boolean)

0 comments on commit 3e7a0d4

Please sign in to comment.