-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PlaybackController] Removed playback session, added playback metadata
- Loading branch information
1 parent
99f375b
commit f28cc1f
Showing
2 changed files
with
20 additions
and
77 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/main/java/com/minecrafttas/tasmod/playback/PlaybackMetadata.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,20 @@ | ||
package com.minecrafttas.tasmod.playback; | ||
|
||
import java.util.LinkedHashMap; | ||
import java.util.Properties; | ||
|
||
/** | ||
* Stores all tasfile specific metadata like author, rerecords and name.<br> | ||
* <br> | ||
* Each metadata is grouped by a group name.<br> | ||
* Made to be easily modifiable so that you can add your own metadata. | ||
*/ | ||
public class PlaybackMetadata { | ||
LinkedHashMap<String, Properties> metadata; | ||
|
||
public PlaybackMetadata() { | ||
this.metadata = new LinkedHashMap<>(); | ||
} | ||
|
||
|
||
} |
77 changes: 0 additions & 77 deletions
77
src/main/java/com/minecrafttas/tasmod/playback/PlaybackSession.java
This file was deleted.
Oops, something went wrong.