add user manual in app instead of pdf

This commit is contained in:
2018-09-24 23:34:06 +02:00
parent f1ff142d91
commit 075289b765
18 changed files with 118 additions and 3 deletions

13
src/node_usermanual.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include "node.h"
#include "node_button.h"
class NodeUserManual : public Node
{
Node* m_template;
NodeButton* btn_ok;
public:
virtual Node* clone_instantiate() const override;
virtual void init() override;
virtual kEventResult handle_event(Event* e) override;
};