|
//
|
|
// BundleHelper.swift
|
|
// Tetris
|
|
//
|
|
// Created by Shadowfacts on 10/17/19.
|
|
// Copyright © 2019 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
fileprivate class BundleHelper {}
|
|
extension Bundle {
|
|
static var tetrisUI: Bundle {
|
|
Bundle(for: BundleHelper.self)
|
|
}
|
|
}
|