Skip to content

Instantly share code, notes, and snippets.

@Velsimir
Last active September 4, 2023 18:37
Show Gist options
  • Save Velsimir/96064bedbc7cd09b0b3b414d29cedbae to your computer and use it in GitHub Desktop.
Save Velsimir/96064bedbc7cd09b0b3b414d29cedbae to your computer and use it in GitHub Desktop.
public static void CreateObject()
{
//Создание объекта на карте
}
public static void GenerateChance()
{
_chance = Random.Range(0, 100);
}
public static int EstablishSalary(int hoursWorked)
{
return _hourlyRate * hoursWorked;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment