Skip to content

Commit

Permalink
Stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
EmeraldLoc committed Apr 3, 2022
1 parent 22b756d commit 1e9c4ca
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions sm_osx/DataController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//
// DataController.swift
// sm_osx
//
// Created by Caleb Elmasri on 4/2/22.
//

import Foundation
import CoreData

class DataController: ObservableObject {
let container = NSPersistentContainer(name: "DataStore")

init() {
container.loadPersistentStores { description, error in
if let error = error {
print("Error, failed to load CoreData due to \(error.localizedDescription)")
}
}
}
}

2 changes: 1 addition & 1 deletion sm_osx/Repos.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ enum Repo: String {
case sm64port = "https://github.com/SrGarmaples/target_osx/releases/latest/download/target_osx.zip"
case sm64ex = "https://github.com/EmeraldLoc/sm64ex.git"
case sm64ex_master = "https://github.com/EmeraldLoc/sm64ex.git --branch master"
case moonshine = "https://github.com/EmeraldLoc/sm64-moonshine sm64ex"
case moonshine = "https://github.com/EmeraldLoc/sm64-moonshine"
case moon64 = "https://github.com/EmeraldLoc/Moon64"
case render96ex = "https://github.com/EmeraldLoc/sm64ex.git --branch alpha"
case sm64ex_coop = "https://github.com/djoslin0/sm64ex-coop.git"
Expand Down

0 comments on commit 1e9c4ca

Please sign in to comment.