OSDN Git Service

UIを調整
[kcd/KCD.git] / KCD / HMDamageView.h
1 //
2 //  HMDameameView.h
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2015/10/18.
6 //  Copyright © 2015年 Hori,Masaki. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 typedef NS_ENUM(NSInteger, HMDamageType) {
12         none = 0,
13         slightly,
14         modest,
15         badly,
16 };
17
18 @interface HMDamageView : NSView
19
20 @property (nonatomic) HMDamageType damageType;
21 @property NSControlSize controlSize;
22
23 @end