mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 14:45:34 +00:00
21 lines
332 B
Objective-C
21 lines
332 B
Objective-C
//
|
|
// App.m
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 7/10/15.
|
|
// Copyright © 2015 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "App.h"
|
|
#import "Host.h"
|
|
|
|
@implementation App
|
|
|
|
@synthesize isRunning;
|
|
|
|
- (NSComparisonResult)compareName:(App *)other {
|
|
return [self.name caseInsensitiveCompare:other.name];
|
|
}
|
|
|
|
@end
|