mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 09:22:33 +00:00
26 lines
476 B
Objective-C
26 lines
476 B
Objective-C
//
|
|
// MPTitlebarColorAccessoryViewController.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 17.10.17.
|
|
// Copyright © 2017 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPTitlebarColorAccessoryViewController.h"
|
|
|
|
@interface MPTitlebarColorAccessoryViewController ()
|
|
|
|
@end
|
|
|
|
@implementation MPTitlebarColorAccessoryViewController
|
|
|
|
- (NSString *)nibName {
|
|
return @"TitlebarColorAccessoryViewController";
|
|
}
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
}
|
|
|
|
@end
|