Allow replays to be started by "replay://" URIs (e.g. from browser)

This commit is contained in:
johni0702
2015-07-06 19:59:20 +02:00
parent 948803571d
commit 2d96cd9cc2
5 changed files with 267 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package eu.crushedpixel.replaymod.online.urischeme;
public class OSXUriScheme extends UriScheme {
@Override
public void install() throws Exception {
throw new UnsupportedOperationException("OSX URI scheme not yet implemented.");
}
}