Jagguar Game Engine
Loading...
Searching...
No Matches
IScript.hpp
1//
2// Created by gigaw on 4/16/2023.
3//
4
5#ifndef FINALPROJECT_JAGGUARS_ISCRIPT_H
6#define FINALPROJECT_JAGGUARS_ISCRIPT_H
7
8#include "Component.hpp"
9#include <string>
10#include <fstream>
11
15class IScript : public Component{
16
17 // Means of tagging oneself
18 // Means of finding/referencing other scripts
19public:
26 IScript(std::string name, std::string filepath);
27
31 ~IScript();
32
33private:
34 std::string m_name;
35 std::string m_filepath;
36 std::fstream* m_file;
37};
38
39
40#endif //FINALPROJECT_JAGGUARS_ISCRIPT_H
Definition: Component.hpp:38
Definition: IScript.hpp:15
~IScript()
Definition: IScript.cpp:18