mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-31 22:01:02 -06:00
22 lines
363 B
Objective-C
22 lines
363 B
Objective-C
//
|
|
// CSNowPlayingViewController.m
|
|
// CSNowPlayingPlugin
|
|
//
|
|
// Created by Zakk on 12/31/14.
|
|
// Copyright (c) 2014 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import "CSNowPlayingViewController.h"
|
|
|
|
@interface CSNowPlayingViewController ()
|
|
|
|
@end
|
|
|
|
@implementation CSNowPlayingViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
// Do view setup here.
|
|
}
|
|
|
|
@end
|