mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-02-16 10:31:02 +00:00
* dark mode & stream overlay * removed all redundant imports * update for the new xcode version with fixes for the new 'implicitly retains self warning' * reworked the overlay view * cleaning up unused variables * small corrections
20 lines
290 B
Objective-C
20 lines
290 B
Objective-C
//
|
|
// keepAlive.h
|
|
// LittleHelper
|
|
//
|
|
// Created by Felix Kratz on 31.10.17.
|
|
// Copyright © 2017 Felix Kratz. All rights reserved.
|
|
//
|
|
#ifndef keepAlive_h
|
|
#define keepAlive_h
|
|
|
|
@interface keepAlive : NSObject
|
|
|
|
+(void) keepSystemAlive;
|
|
+(void) allowSleep;
|
|
|
|
@end
|
|
|
|
#endif /* keepAlive_h */
|
|
|