Just breaking stuff
This commit is contained in:
20
archive/dawntictactoe/components/TicTacToeScoreboard.hpp
Normal file
20
archive/dawntictactoe/components/TicTacToeScoreboard.hpp
Normal file
@ -0,0 +1,20 @@
|
||||
// Copyright (c) 2023 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include "scene/SceneItemComponent.hpp"
|
||||
#include "components/TicTacToeGame.hpp"
|
||||
#include "scene/components/ui/UILabel.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
class TicTacToeScoreboard : public SceneItemComponent {
|
||||
protected:
|
||||
TicTacToeGame *game = nullptr;
|
||||
|
||||
public:
|
||||
TicTacToeScoreboard(SceneItem *item);
|
||||
void onStart() override;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user