14 lines
288 B
C#
14 lines
288 B
C#
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;
|
|
}
|