18 lines
No EOL
387 B
C#
18 lines
No EOL
387 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WingsEmu.Game.Configurations.Miniland;
|
|
|
|
public class MinigameConfiguration
|
|
{
|
|
public List<Minigame> Minigames { get; set; } = new()
|
|
{
|
|
new()
|
|
};
|
|
|
|
public List<MinigameScoresHolder> ScoresHolders { get; set; } = new()
|
|
{
|
|
new()
|
|
};
|
|
|
|
public GlobalMinigameConfiguration Configuration { get; set; } = new();
|
|
} |