mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-22 13:19:33 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
12 lines
277 B
C#
12 lines
277 B
C#
namespace Sandbox;
|
|
|
|
/// <summary>
|
|
/// Some metadata we'll pack into a workshop submission when publishing.
|
|
/// </summary>
|
|
public struct WorkshopItemMetaData
|
|
{
|
|
public string Title { get; set; }
|
|
public string PackageIdent { get; set; }
|
|
public ulong WorkshopId { get; set; }
|
|
}
|