-
-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package dev.slimevr.bridge; | ||
|
||
import io.eiren.util.ann.VRServerThread; | ||
import io.eiren.vr.trackers.ShareableTracker; | ||
|
||
public class OpenVRNativeBridge implements Bridge { | ||
|
||
public OpenVRNativeBridge() { | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
@Override | ||
public void dataRead() { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
@Override | ||
public void dataWrite() { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
@Override | ||
public void addSharedTracker(ShareableTracker tracker) { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
@Override | ||
public void removeSharedTracker(ShareableTracker tracker) { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
@Override | ||
@VRServerThread | ||
public void startBridge() { | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters