Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace FinalyProject
- {
- public class Stage
- {
- private bool _isSpecial;
- private StageLevel _stageLevel;
- public bool IsSpecial => _isSpecial;
- public StageLevel StageLevel => _stageLevel;
- public Stage(bool isSpecial, StageLevel stageLevel)
- {
- _isSpecial = isSpecial;
- _stageLevel = StageLevel;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment