GBA-8-19/CGame/Components/Box.swift
bluesea 66c5202be8 s
2024-06-14 18:12:40 +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
}
}