使用 JavaScript能使本网站更好的工作。
首页
帮助
登录
lolengine
/
lol
镜像自地址
https://github.com/lolengine/lol
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
0
百科
动态
浏览代码
tutorial: add a few missing “override” qualifiers.
legacy
Sam Hocevar
6 年前
父节点
68c2530b16
当前提交
c49bce2b8b
共有
3 个文件被更改
,包括
3 次插入
和
3 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+1
-1
doc/tutorial/04_texture.cpp
+1
-1
doc/tutorial/05_easymesh.cpp
+1
-1
doc/tutorial/06_sprite.cpp
+ 1
- 1
doc/tutorial/04_texture.cpp
查看文件
@@ -80,7 +80,7 @@ public:
return true;
}
virtual void tick_draw(float seconds, Scene &scene)
virtual void tick_draw(float seconds, Scene &scene)
override
{
WorldEntity::tick_draw(seconds, scene);
+ 1
- 1
doc/tutorial/05_easymesh.cpp
查看文件
@@ -87,7 +87,7 @@ public:
Ticker::Unref(m_light2);
}
virtual void tick_game(float seconds)
virtual void tick_game(float seconds)
override
{
WorldEntity::tick_game(seconds);
+ 1
- 1
doc/tutorial/06_sprite.cpp
查看文件
@@ -46,7 +46,7 @@ public:
Ticker::Unref(m_camera);
}
virtual void tick_game(float seconds)
virtual void tick_game(float seconds)
override
{
for (int i = 0; i < SPRITE_COUNT; ++i)
{
撰写
预览
正在加载...
取消
保存