mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
15 lines
341 B
C++
15 lines
341 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "i_story_manager.h"
|
|
#include "base_node.h"
|
|
|
|
class IScriptNode
|
|
{
|
|
public:
|
|
virtual ~IScriptNode() {}
|
|
|
|
virtual std::string Build(IStoryManager &story, int nb_out_conns, BaseNode &base) = 0;
|
|
virtual std::string GenerateConstants(IStoryManager &story, int nb_out_conns, BaseNode &base) = 0;
|
|
};
|