5 lines
227 B
C#
5 lines
227 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SideScrollerGame.Content.Definitions;
|
|
|
|
public sealed record CameraPathDefinition(string Id, string DisplayName, IReadOnlyList<CameraPathPointDefinition> Points, double DefaultSpeed); |