ATMTextLayer.h 353 B

1234567891011121314151617181920
  1. /*
  2. * ATMTextLayer.h
  3. * ATMHud
  4. *
  5. * Created by Marcel Müller on 2011-03-01.
  6. * Copyright (c) 2010-2011, Marcel Müller (atomcraft)
  7. * All rights reserved.
  8. *
  9. * https://github.com/atomton/ATMHud
  10. */
  11. #import <QuartzCore/CALayer.h>
  12. @interface ATMTextLayer : CALayer {
  13. NSString *caption;
  14. }
  15. @property (nonatomic, strong) NSString *caption;
  16. @end