Projet-IA-Madelaine/Scripts/Objects/GameState.cs

12 lines
187 B
C#
Raw Permalink Normal View History

2024-06-12 21:03:42 +02:00
using System;
using System.Collections.Generic;
public struct GameState
{
public List<int> AlivePlayers { get; set; }
public float CurrentDifficultyMultiplier { get; set; }
}