18 lines
367 B
Swift
18 lines
367 B
Swift
//
|
|
// Zposition.swift
|
|
// Crashy Plane
|
|
//
|
|
// Created by Brian Sipple on 3/3/19.
|
|
// Copyright © 2019 Brian Sipple. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
enum ZPosition {
|
|
static let sky = CGFloat(-40)
|
|
static let slidingBackground = CGFloat(-30)
|
|
static let ground = CGFloat(-10)
|
|
static let player = CGFloat(10)
|
|
static let rocks = CGFloat(-20)
|
|
}
|