17 lines
284 B
Objective-C
17 lines
284 B
Objective-C
//
|
|
// UIComputerView.h
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 10/22/14.
|
|
// Copyright (c) 2014 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Computer.h"
|
|
|
|
@interface UIComputerView : UIView
|
|
|
|
- (id) initWithComputer:(Computer*)computer;
|
|
|
|
@end
|