2024-02-28 01:32:58 +08:00
|
|
|
#include <iostream>
|
|
|
|
|
#include "zlog.h"
|
2024-03-14 17:22:06 +08:00
|
|
|
#include "singleton.h"
|
|
|
|
|
#include "assetmanager.h"
|
2024-02-28 01:32:58 +08:00
|
|
|
int main() {
|
|
|
|
|
zlog::info("hello info");
|
|
|
|
|
zlog::warn("hello {}", "warn");
|
|
|
|
|
zlog::error("hello {}", "error");
|
2024-03-14 17:22:06 +08:00
|
|
|
AssetManager re;
|
|
|
|
|
AssetManager::GetSingleton().GetSingleton();
|
2024-02-28 01:32:58 +08:00
|
|
|
return 0;
|
|
|
|
|
}
|