// // Render.h // OtaClock // // Created by Thomas Buck on 17.08.15. // Copyright (c) 2015 xythobuz. All rights reserved. // #import @class MainView; @interface Render : NSObject - (id)initWithParent:(MainView *)par; - (NSSize)baseSize; - (void)drawWithDate:(NSDate *)date; - (void)drawWithEye:(NSInteger)eyeIndex; - (void)drawInto:(NSView *)view; @end