using System.Collections; using System.Collections.Generic; using UnityEngine; public static class Utils { public static string PluralFormSuffix(int count) => count >= 2 ? "s" : ""; }