world-manager/World Manager for Minecraft/Item.swift
2026-05-25 13:18:32 -05:00

19 lines
262 B
Swift

//
// Item.swift
// World Manager for Minecraft
//
// Created by John Burwell on 2026-05-25.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}