5 lines
207 B
C#
5 lines
207 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SideScrollerGame.Content.Definitions;
|
|
|
|
public sealed record EnemyBehaviorDefinition(string Id, string DisplayName, IReadOnlyList<BehaviorTrackDefinition> Tracks); |