-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/MajickTek/MiniCraftLauncher
- Loading branch information
Showing
17 changed files
with
388 additions
and
609 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
MiniCraftLauncher/src/com/mt/minilauncher/ChannelObject.java
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,22 @@ | ||
package com.mt.minilauncher; | ||
|
||
import java.io.Serializable; | ||
|
||
public class ChannelObject implements Serializable{ | ||
/** | ||
* | ||
*/ | ||
private static final long serialVersionUID = 1L; | ||
String channelFile; | ||
|
||
public ChannelObject(String channelFile) { | ||
this.channelFile = channelFile; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return channelFile; | ||
} | ||
|
||
|
||
} |
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
Oops, something went wrong.