Barely progress on tilesets
This commit is contained in:
@ -3,5 +3,11 @@
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
# Sources
|
||||
target_sources(${DAWN_TARGET_NAME}
|
||||
PRIVATE
|
||||
VNPlayer.cpp
|
||||
)
|
||||
|
||||
# Subdirs
|
||||
add_subdirectory(events)
|
12
src/dawnpokergame/visualnovel/VNPlayer.cpp
Normal file
12
src/dawnpokergame/visualnovel/VNPlayer.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 "VNPlayer.hpp"
|
||||
|
||||
using namespace Dawn;
|
||||
|
||||
VNPlayer::VNPlayer(SceneItem *item) : SceneItemComponent(item) {
|
||||
|
||||
}
|
18
src/dawnpokergame/visualnovel/VNPlayer.hpp
Normal file
18
src/dawnpokergame/visualnovel/VNPlayer.hpp
Normal file
@ -0,0 +1,18 @@
|
||||
// Copyright (c) 2022 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include "dawnlibs.hpp"
|
||||
#include "scene/SceneItemComponent.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
class VNPlayer : public SceneItemComponent {
|
||||
protected:
|
||||
|
||||
|
||||
public:
|
||||
VNPlayer(SceneItem *item);
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user