GBA-8-19/Delta/Components/Box.swift
2024-06-14 17:15:51 +08:00

20 lines
238 B
Swift

//
// Box.swift
// Hthik
//
// Created by Hthik on 11/28/18.
// Copyright © 2018 Hthik. All rights reserved.
//
import Foundation
class Box<T>
{
let value: T
init(_ value: T)
{
self.value = value
}
}