mirror of
https://github.com/ConjureETS/Human-Farm-Tycoon.git
synced 2026-03-24 18:31:07 +00:00
16 lines
209 B
C#
16 lines
209 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class Games {
|
|
|
|
|
|
private int nbRounds;
|
|
|
|
public int NbRounds
|
|
{
|
|
get { return nbRounds; }
|
|
set { nbRounds = value; }
|
|
}
|
|
|
|
}
|