From 83ad581efd6959e4215c87d4291706da6e2879ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Wed, 14 Aug 2019 21:19:49 -0700 Subject: [PATCH] examples: Added example URL. --- examples/01-cubes/cubes.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/01-cubes/cubes.cpp b/examples/01-cubes/cubes.cpp index d1243b80a..1373d44fa 100644 --- a/examples/01-cubes/cubes.cpp +++ b/examples/01-cubes/cubes.cpp @@ -125,8 +125,8 @@ BX_STATIC_ASSERT(BX_COUNTOF(s_ptState) == BX_COUNTOF(s_ptNames) ); class ExampleCubes : public entry::AppI { public: - ExampleCubes(const char* _name, const char* _description) - : entry::AppI(_name, _description) + ExampleCubes(const char* _name, const char* _description, const char* _url) + : entry::AppI(_name, _description, _url) , m_pt(0) , m_r(true) , m_g(true) @@ -362,4 +362,4 @@ public: } // namespace -ENTRY_IMPLEMENT_MAIN(ExampleCubes, "01-cubes", "Rendering simple static mesh."); +ENTRY_IMPLEMENT_MAIN(ExampleCubes, "01-cubes", "Rendering simple static mesh.", "https://bkaradzic.github.io/bgfx/examples.html#cubes");