Advertisement
VodVas

CleanCode_ExampleTask10.cs

Dec 18th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | Pets | 0 0
  1. public class Weapon
  2. {
  3.     private const int MinimumBullets = 0;
  4.  
  5.     private int _bullets;
  6.  
  7.     public bool CanShoot() => _bullets > MinimumBullets;
  8.  
  9.     public void Shoot()
  10.     {
  11.         if (CanShoot() == false)
  12.         {
  13.             throw new InvalidOperationException("Нет пуль.");
  14.         }
  15.  
  16.         _bullets--;
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement