Skip to content

Commit

Permalink
Slight documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wixoaGit committed Oct 20, 2023
1 parent c7c6515 commit 3b5d647
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions OpenDreamPackageTool/ClientPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

namespace OpenDreamPackageTool;

/// <summary>
/// Packages the client's resources & assemblies in a format ready to be downloaded by connecting clients
/// </summary>
public static class ClientPackaging {
private static readonly string[] ClientIgnoredResources = {
"Maps",
Expand Down
3 changes: 3 additions & 0 deletions OpenDreamPackageTool/ServerPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

namespace OpenDreamPackageTool;

/// <summary>
/// Packages the server, and optionally the client alongside for hybrid ACZ
/// </summary>
public static class ServerPackaging {
private static readonly PlatformReg[] Platforms = {
new("win-x64", "Windows", true),
Expand Down
4 changes: 4 additions & 0 deletions OpenDreamPackageTool/TgsPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

namespace OpenDreamPackageTool;

/// <summary>
/// Packages the OpenDream server, client (hybrid ACZ), and compiler in a format friendly for TGS
/// See https://github.com/OpenDreamProject/OpenDream/issues/1495
/// </summary>
public static class TgsPackaging {
public static void Package(Program.TgsOptions options) {
if (Directory.Exists(options.OutputDir)) {
Expand Down

0 comments on commit 3b5d647

Please sign in to comment.