summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/00-helloworld/helloworld.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/examples/00-helloworld/helloworld.cpp')
-rw-r--r--3rdparty/bgfx/examples/00-helloworld/helloworld.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/3rdparty/bgfx/examples/00-helloworld/helloworld.cpp b/3rdparty/bgfx/examples/00-helloworld/helloworld.cpp
index 57d594155f6..b28d271f0df 100644
--- a/3rdparty/bgfx/examples/00-helloworld/helloworld.cpp
+++ b/3rdparty/bgfx/examples/00-helloworld/helloworld.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2011-2018 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
@@ -15,8 +15,8 @@ namespace
class ExampleHelloWorld : public entry::AppI
{
public:
- ExampleHelloWorld(const char* _name, const char* _description)
- : entry::AppI(_name, _description)
+ ExampleHelloWorld(const char* _name, const char* _description, const char* _url)
+ : entry::AppI(_name, _description, _url)
{
}
@@ -129,4 +129,9 @@ public:
} // namespace
-ENTRY_IMPLEMENT_MAIN(ExampleHelloWorld, "00-helloworld", "Initialization and debug text.");
+ENTRY_IMPLEMENT_MAIN(
+ ExampleHelloWorld
+ , "00-helloworld"
+ , "Initialization and debug text."
+ , "https://bkaradzic.github.io/bgfx/examples.html#helloworld"
+ );