1234567891011121314151617181920 |
- /*
- * ATMTextLayer.h
- * ATMHud
- *
- * Created by Marcel Müller on 2011-03-01.
- * Copyright (c) 2010-2011, Marcel Müller (atomcraft)
- * All rights reserved.
- *
- * https://github.com/atomton/ATMHud
- */
- #import <QuartzCore/CALayer.h>
- @interface ATMTextLayer : CALayer {
- NSString *caption;
- }
- @property (nonatomic, strong) NSString *caption;
- @end
|