This commit is contained in:
Бранимир Караџић
2019-08-15 08:11:34 -07:00
parent 1768ace0f7
commit 07a0ecd743
5 changed files with 38 additions and 13 deletions

View File

@@ -13,8 +13,8 @@ namespace
class ExampleMesh : public entry::AppI
{
public:
ExampleMesh(const char* _name, const char* _description)
: entry::AppI(_name, _description)
ExampleMesh(const char* _name, const char* _description, const char* _url)
: entry::AppI(_name, _description, _url)
{
}
@@ -152,4 +152,9 @@ public:
} // namespace
ENTRY_IMPLEMENT_MAIN(ExampleMesh, "04-mesh", "Loading meshes.");
ENTRY_IMPLEMENT_MAIN(
ExampleMesh
, "04-mesh"
, "Loading meshes."
, "https://bkaradzic.github.io/bgfx/examples.html#mesh"
);