Last active
April 23, 2025 14:46
-
-
Save Nikolay-Shved/12ff7eaba802e3d499d8bc45b2047595 to your computer and use it in GitHub Desktop.
ДЗ: Переменные
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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