mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2026-04-23 16:46:48 +00:00
Delete temp file
This commit is contained in:
@@ -1,30 +0,0 @@
|
|||||||
package com.limelight;
|
|
||||||
|
|
||||||
import com.limelight.gui.MainFrame;
|
|
||||||
import com.limelight.gui.StreamFrame;
|
|
||||||
|
|
||||||
public class Limelight {
|
|
||||||
public static final double VERSION = 1.0;
|
|
||||||
|
|
||||||
private final String HOST;
|
|
||||||
|
|
||||||
|
|
||||||
public Limelight(String host) {
|
|
||||||
this.HOST = host;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void startUp() {
|
|
||||||
StreamFrame streamFrame = new StreamFrame();
|
|
||||||
streamFrame.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void createInstance(String host) {
|
|
||||||
Limelight limelight = new Limelight(host);
|
|
||||||
limelight.startUp();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void main(String args[]) {
|
|
||||||
MainFrame limeFrame = new MainFrame();
|
|
||||||
limeFrame.build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user