16 lines
204 B
Swift
16 lines
204 B
Swift
//
|
|
// Theme.swift
|
|
// Delta
|
|
//
|
|
// Created by Riley Testut on 9/27/16.
|
|
// Copyright © 2016 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum Theme
|
|
{
|
|
case opaque
|
|
case translucent
|
|
}
|