com.github.bloodshura.ignitium.ntv.keyboard.KeyboardHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignitium-native Show documentation
Show all versions of ignitium-native Show documentation
An API for working with native system APIs, with a higher-level interface.
The newest version!
package com.github.bloodshura.ignitium.ntv.keyboard;
import com.github.bloodshura.ignitium.input.Key;
import com.github.bloodshura.ignitium.lang.Disposable;
import com.github.bloodshura.ignitium.ntv.NativeException;
import javax.annotation.Nonnull;
public interface KeyboardHandler extends Disposable {
@Override
void dispose() throws NativeException;
void press(@Nonnull Key key) throws NativeException;
void release(@Nonnull Key key) throws NativeException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy