mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-28 01:33:02 +02:00
18 lines
335 B
Text
18 lines
335 B
Text
![]() |
//
|
||
|
// steamshim_mac_helpers.mm
|
||
|
// shim
|
||
|
//
|
||
|
// Created by ゾロアーク on 1/3/21.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "steamshim_mac_helpers.h"
|
||
|
|
||
|
std::string execPath() {
|
||
|
std::string ret([NSString pathWithComponents:@[
|
||
|
NSBundle.mainBundle.executablePath,
|
||
|
@(GAME_LAUNCH_NAME)
|
||
|
]].UTF8String);
|
||
|
|
||
|
}
|