mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
18 lines
468 B
C#
18 lines
468 B
C#
// https://github.com/MaximumADHD/Roblox-Studio-Mod-Manager/blob/main/ProjectSrc/Utility/Package.cs
|
|
|
|
namespace Bloxstrap.Helpers.RSMM
|
|
{
|
|
internal class Package
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string Signature { get; set; } = "";
|
|
public int PackedSize { get; set; }
|
|
public int Size { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"[{Signature}] {Name}";
|
|
}
|
|
}
|
|
}
|