mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-01-16 05:56:40 +01:00
17 lines
236 B
Swift
Executable File
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
|
|
|
|
}
|