18 lines
348 B
Swift
18 lines
348 B
Swift
//
|
|
// HostingController.swift
|
|
// Tetris WatchKit Extension
|
|
//
|
|
// Created by Shadowfacts on 10/14/19.
|
|
// Copyright © 2019 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import WatchKit
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
class HostingController: WKHostingController<ContentView> {
|
|
override var body: ContentView {
|
|
return ContentView()
|
|
}
|
|
}
|