Files
SwiftUI/Other Projects/2048 Game/SwiftUI2048/Models/IdentifiedBlock.swift
Ivan Vorobei 48001a8e9a Update
2019-06-26 22:12:35 +03:00

17 lines
236 B
Swift
Executable File

//
// IdentifiedBlock.swift
// SwiftUI2048
//
// Created by Hongyu on 6/5/19.
// Copyright © 2019 Cyandev. All rights reserved.
//
import Foundation
struct IdentifiedBlock: Block {
let id: Int
var number: Int
}