mirror of
https://github.com/libretro/Play-.git
synced 2025-02-12 20:29:11 +00:00
18 lines
320 B
Objective-C
18 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
|