mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
17 lines
320 B
Objective-C
17 lines
320 B
Objective-C
//
|
|
// BackgroundLayer.h
|
|
// Play
|
|
//
|
|
// Created by Lounge Katt on 8/17/15.
|
|
// Copyright (c) 2015 Jean-Philip Desjardins. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@interface BackgroundLayer : NSObject
|
|
|
|
+ (CAGradientLayer*)blueGradient;
|
|
|
|
@end
|