Modelowanie_Wirtualnych_Swi.../Assets/Scripts/Settings.cs

14 lines
288 B
C#
Raw Permalink Normal View History

2021-05-23 21:13:09 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Settings
{
public int sizeX = 10;
public int sizeY = 10;
public int antsCount = 7;
public int fps = 30;
public int refreshFood = 1000;
public int weakenPheromones = 20;
}