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