mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-07-06 00:25:17 +02:00
20 lines
382 B
C++
20 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 */
|