mirror of
https://gitee.com/houstudio/Cdroid.git
synced 2024-12-05 05:37:53 +08:00
15 lines
336 B
C++
Executable File
15 lines
336 B
C++
Executable File
#include <cdroid.h>
|
|
#include <string>
|
|
#include <cdlog.h>
|
|
#include <iostream>
|
|
extern Window*CreateMultiMedia();
|
|
|
|
int main(int argc,const char*argv[]){
|
|
App app(argc,argv);
|
|
CreateMultiMedia();
|
|
app.setOpacity(app.getArgAsInt("alpha",255));
|
|
app.getString("Main Menu",app.getArg("language","eng"));
|
|
return app.exec();
|
|
}
|
|
|