// // Moon.h // Blackbox // // Created by Ryan McLeod on 12/2/14. // Copyright (c) 2014 Ryan McLeod. All rights reserved. // #import <UIKit/UIKit.h> @interface Moon : UIView // 0.0 = new moon // 0.1 = sliver forming/waxing from right // 0.5 = full mooon! fading/wanning from right // 0.9 = almost new moon // 1.0 = new moon @property float moonPhase; @property UIColor *moonColor; @end