mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-16 20:05:37 +02:00
21 lines
382 B
C++
21 lines
382 B
C++
![]() |
//
|
||
|
// CocoaHelpers.hpp
|
||
|
// PlayerLegacy
|
||
|
//
|
||
|
// Created by ゾロアーク on 11/18/20.
|
||
|
//
|
||
|
|
||
|
#ifndef CocoaHelpers_hpp
|
||
|
#define CocoaHelpers_hpp
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
class Cocoa {
|
||
|
public:
|
||
|
static std::string getFile(const char *baseName, const char *ext);
|
||
|
static std::string getFilePath(const char *baseName, const char *ext);
|
||
|
};
|
||
|
|
||
|
#endif /* CocoaHelpers_hpp */
|