14 lines
283 B
Swift
14 lines
283 B
Swift
import SwiftUI
|
|
import CoreBluetooth
|
|
|
|
@main
|
|
struct ScoobyTagApp: App {
|
|
@StateObject private var bluetoothManager = BluetoothManager()
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.environmentObject(bluetoothManager)
|
|
}
|
|
}
|
|
}
|