Skip to content

Commit

Permalink
[PlaybackController] Removed playback session, added playback metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ScribbleTAS committed Mar 11, 2024
1 parent 99f375b commit f28cc1f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 77 deletions.
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<>();
}


}

This file was deleted.

0 comments on commit f28cc1f

Please sign in to comment.