Abdula_2314124

Untitled

Mar 9th, 2024
716
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace FinalyProject
  6. {
  7.     public class Stage
  8.     {
  9.         private bool _isSpecial;
  10.         private StageLevel _stageLevel;
  11.         public bool IsSpecial => _isSpecial;
  12.         public StageLevel StageLevel => _stageLevel;
  13.         public Stage(bool isSpecial, StageLevel stageLevel)
  14.         {
  15.             _isSpecial = isSpecial;
  16.             _stageLevel = StageLevel;
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment