mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
21 lines
443 B
C++
21 lines
443 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "i_story_manager.h"
|
|
#include "base_node.h"
|
|
#include "i_script_node.h"
|
|
#include "i_story_project.h"
|
|
|
|
struct MediaNode : public BaseNode
|
|
{
|
|
|
|
MediaNode(const std::string &type);
|
|
|
|
virtual std::string Build(IStoryProject &story, int nb_out_conns) override;
|
|
virtual std::string GenerateConstants(IStoryProject &story, int nb_out_conns) override;
|
|
|
|
std::string image;
|
|
std::string sound;
|
|
};
|
|
|