Advertisement
IGRODELOFF

HW: Variables

Oct 4th, 2024
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.68 KB | Source Code | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Task1
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             float speedPlayer;
  14.             float speedEnemy;
  15.             float healthPlayer;
  16.             float healthEnemy;
  17.             float armorPlayer;
  18.             float armorEnemy;
  19.  
  20.             int sizeInventory;
  21.             int countDropItem;
  22.  
  23.             uint countGold;
  24.  
  25.             long idKeyPlayer;
  26.             long worldSeed;
  27.  
  28.             bool takeDamage;
  29.             bool isFalling;
  30.             bool isPlayerDead;
  31.         }
  32.     }
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement