Skip to content

Instantly share code, notes, and snippets.

@xmhafiz
Created October 18, 2021 15:07
Show Gist options
  • Save xmhafiz/b4019be83e805a16eb99b645f42d2816 to your computer and use it in GitHub Desktop.
Save xmhafiz/b4019be83e805a16eb99b645f42d2816 to your computer and use it in GitHub Desktop.
struct GameData {
static var counter = 0
static var score = 0
static var wins = 0
static var lost = 0
}
// usage
// write
GameData.wins = 5
// read
let lostCount = GameData.lost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment