mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
19 lines
592 B
C++
19 lines
592 B
C++
//Module name: Floating IPS, command line frontend
|
|
//Author: Alcaro
|
|
//Date: See Git history
|
|
//Licence: GPL v3.0 or higher
|
|
|
|
#include "flips.h"
|
|
|
|
#ifdef FLIPS_CLI
|
|
file* file::create(const char * filename) { return file::create_libc(filename); }
|
|
bool file::exists(const char * filename) { return file::exists_libc(filename); }
|
|
filewrite* filewrite::create(const char * filename) { return filewrite::create_libc(filename); }
|
|
filemap* filemap::create(const char * filename) { return filemap::create_fallback(filename); }
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
return flipsmain(argc, argv);
|
|
}
|
|
#endif
|