aboutsummaryrefslogtreecommitdiff
path: root/foray/ForayItems.swift
diff options
context:
space:
mode:
Diffstat (limited to 'foray/ForayItems.swift')
-rw-r--r--foray/ForayItems.swift25
1 files changed, 0 insertions, 25 deletions
diff --git a/foray/ForayItems.swift b/foray/ForayItems.swift
deleted file mode 100644
index a8786ee..0000000
--- a/foray/ForayItems.swift
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// ForayItems.swift
-// foray
-//
-// Created by Nicholas Tay on 20/3/2022.
-//
-
-import Foundation
-
-enum ItemType: String, Decodable {
- case item
- case quest
-}
-
-struct YearSection {
- var year: Int
- var items: [PenguinItem]
-}
-
-struct PenguinItem: Decodable {
- var type: ItemType
- var releaseDate: Date
- var id: String
- var name: String
-}