Change html to dark mode by default and stat in vfs
This commit is contained in:
17
examples/timer.cpp
Normal file
17
examples/timer.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "TessesFramework/Common.hpp"
|
||||
#include "TessesFramework/TessesFramework.hpp"
|
||||
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
using namespace Tesses::Framework;
|
||||
TF_Init();
|
||||
|
||||
auto timer = TF_Timer([]()->void {
|
||||
std::cout << "Hi, I am a timer" << std::endl;
|
||||
});
|
||||
|
||||
TF_RunEventLoop();
|
||||
|
||||
TF_Quit();
|
||||
}
|
||||
Reference in New Issue
Block a user