Skip to content

Instantly share code, notes, and snippets.

@Nikolay-Shved
Last active April 23, 2025 14:46
Show Gist options
  • Save Nikolay-Shved/12ff7eaba802e3d499d8bc45b2047595 to your computer and use it in GitHub Desktop.
Save Nikolay-Shved/12ff7eaba802e3d499d8bc45b2047595 to your computer and use it in GitHub Desktop.
ДЗ: Переменные
int armorPrice = 1500;
int weaponPrice = 1000;
float moveSpeed = 1.0f;
float attackSpeed = 0.5f;
string weaponName = "Daedric Sword";
string armorName = "Daedric Armor";
bool isAbleToOpen = true;
bool canPay = true;
int playerCoin = 1200;
int damage = 30;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment