Script-Core is a static library that provides core functionality for the Script project.
To use Script-Core in your project, follow these steps:
- Clone the repository or download the source code.
- Include the necessary header files in your project.
- Link against the Script-Core library during compilation.
The Script-Core library provides the following classes and functions:
The Layer class is an abstract base class that defines the interface for script layers.
virtual ~Layer(): Destructor for theLayerclass.virtual int work1() = 0: Pure virtual function that performs work 1.virtual int work2() = 0: Pure virtual function that performs work 2.virtual int work3() = 0: Pure virtual function that performs work 3.