Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

adbaga / Ics0016-2019f

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Ics0016-2019f
  • Game
  • CellState.cs
Find file
BlameHistoryPermalink
  • adbaga's avatar
    yes · 2c9d0a76
    adbaga committed 5 years ago
    2c9d0a76
CellState.cs 172 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13
namespace Game
{
    public enum CellState
        {
            Empty, 
            Mine,
            Flag,
            Hidden,
            Open,
        }
        
    
}