5 lines
210 B
C#
5 lines
210 B
C#
#nullable enable
|
|
|
|
namespace SideScrollerGame.Content.Definitions;
|
|
|
|
public sealed record CollectibleDefinition(string Id, string DisplayName, CollectibleKind Kind, int Value, string? ReferencedContentId = null); |