Projet-IA-Madelaine/Scripts/Objects/GameState.cs
2024-06-12 21:03:42 +02:00

12 lines
187 B
C#

using System;
using System.Collections.Generic;
public struct GameState
{
public List<int> AlivePlayers { get; set; }
public float CurrentDifficultyMultiplier { get; set; }
}