mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-24 03:59:51 +00:00
16 lines
349 B
Objective-C
16 lines
349 B
Objective-C
//
|
|
// MPGradientView.h
|
|
// MacPass
|
|
//
|
|
// Created by michael starke on 20.02.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MPGradientView : NSView
|
|
|
|
- (id)initWithFrame:(NSRect)frame activeGradient:(NSGradient *)activeGradient inactiveGradient:(NSGradient *)inactiveGradient;
|
|
|
|
@end
|