Skip to content

Commit

Permalink
Add documentation that it still requires to be implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas committed May 11, 2024
1 parent a18552a commit 2caafd3
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ public class ReplayHeaderParser {
try (LittleEndianDataInputStream stream = new LittleEndianDataInputStream((new ByteArrayInputStream(bytes)))) {
LuaData mod = parseLua(stream);

// TODO: needs implementation

return null;
}
}
Expand All @@ -55,6 +57,8 @@ public class ReplayHeaderParser {
try (LittleEndianDataInputStream stream = new LittleEndianDataInputStream((new ByteArrayInputStream(bytes)))) {
LuaData gameOptions = parseLua(stream);

// TODO: needs implementation

return null;
}
}
Expand All @@ -64,6 +68,8 @@ public class ReplayHeaderParser {
try (LittleEndianDataInputStream stream = new LittleEndianDataInputStream((new ByteArrayInputStream(bytes)))) {
LuaData playerOptions = parseLua(stream);

// TODO: needs implementation

return null;
}
}
Expand Down

0 comments on commit 2caafd3

Please sign in to comment.