12 lines
187 B
C#
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; }
|
||
|
|
||
|
}
|
||
|
|
||
|
|