Skip to content

Instantly share code, notes, and snippets.

@Diablo9818
Created March 27, 2024 20:42
Show Gist options
  • Save Diablo9818/5933a424b13afae87e60932f039ccd1f to your computer and use it in GitHub Desktop.
Save Diablo9818/5933a424b13afae87e60932f039ccd1f to your computer and use it in GitHub Desktop.
public static void CreateObject()
{
//Создание объекта на карте
}
public static void GenerateRandomChance()
{
_chance = Random.Range(0, 100);
}
public static int CalculateSalary(int hoursWorked)
{
return _hourlyRate * hoursWorked;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment