VN Textbox can now be any size
This commit is contained in:
10
src/dawnpokergame/ui/CMakeLists.txt
Normal file
10
src/dawnpokergame/ui/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2022 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
# Sources
|
||||
target_sources(${DAWN_TARGET_NAME}
|
||||
PRIVATE
|
||||
PokerGameTextbox.cpp
|
||||
)
|
12
src/dawnpokergame/ui/PokerGameTextbox.cpp
Normal file
12
src/dawnpokergame/ui/PokerGameTextbox.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
// Copyright (c) 2022 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#include "PokerGameTextbox.hpp"
|
||||
|
||||
using namespace Dawn;
|
||||
|
||||
std::shared_ptr<VisualNovelTextbox> PokerGameTextbox::makeTextbox() {
|
||||
return nullptr;
|
||||
}
|
14
src/dawnpokergame/ui/PokerGameTextbox.hpp
Normal file
14
src/dawnpokergame/ui/PokerGameTextbox.hpp
Normal file
@ -0,0 +1,14 @@
|
||||
// Copyright (c) 2022 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include "visualnovel/ui/VisualNovelTextbox.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
class PokerGameTextbox {
|
||||
public:
|
||||
static std::shared_ptr<VisualNovelTextbox> makeTextbox();
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user