mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
kiritow
9c1feddb49
Music SoundEffect added. MusicPlayer added. Sample Application Source Code Changed.
40 lines
874 B
C++
40 lines
874 B
C++
#include "App.h"
|
|
|
|
using namespace Engine;
|
|
using namespace MiniEngine;
|
|
|
|
namespace App
|
|
{
|
|
/// Application Main Method
|
|
void Main()
|
|
{
|
|
Window wnd(1366,768);///16:9
|
|
Renderer rnd=wnd.getRenderer();
|
|
Font bigf;
|
|
if(bigf.use("msyh.ttf",72)<0)
|
|
{
|
|
mlog("Failed to open Font.");
|
|
return;
|
|
}
|
|
rnd.clear();
|
|
rnd.update();
|
|
|
|
MusicPlayer player;
|
|
Music m("res/music.mp3");
|
|
player.add(m,-1);
|
|
player.play();
|
|
|
|
while(1) SDL_PollEvent(0);
|
|
|
|
/*
|
|
/// Sample Code of Brush
|
|
Brush b(wnd,Rect(wnd.getSize().w/2-50,wnd.getSize().h/2-50,100,100));
|
|
Texture t=rnd.loadImage("D:\\sample.png");
|
|
Rect dst(0,0,wnd.getSize().w,wnd.getSize().h);
|
|
b.copyTo(t,dst,false);
|
|
rnd.update();
|
|
SDL_Delay(2000);
|
|
*/
|
|
}
|
|
}
|