mousewheel support on all platforms (X11,Darwin,Win32,Java14) and in the core (bug...
[org.ibex.core.git] / src / org / ibex / plat / Linux.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex.plat;
3
4 /** Linux with an X11 display */
5 public class Linux extends X11 {
6     private native void fixEnvironment();
7
8     public Linux() {
9         fixEnvironment();
10     }
11
12 }