このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
lolengine
/
lol
ミラー元
https://github.com/lolengine/lol
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
リリース
0
Wiki
アクティビティ
ソースを参照
tutorial: add a few missing “override” qualifiers.
legacy
Sam Hocevar
6年前
親
68c2530b16
コミット
c49bce2b8b
3個のファイルの変更
、
3行の追加
、
3行の削除
分割表示
差分オプション
統計情報を表示
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)
{
書き込み
プレビュー
読み込み中…
キャンセル
保存