Class

AbstractAPIComponent

(abstract) AbstractAPIComponent(stsJarPath)

Generic API Component that uses the Slay the Spire game files

Constructor

# abstract new AbstractAPIComponent(stsJarPath)

Create an API Component with access to Slay the Spire game files
Parameters:
Name Type Description
stsJarPath string Path to the `desktop-1.0.jar` Slay the Spire game file

View Source SlayTheSpireAPI/APIComponents/AbstractAPIComponent.ts, line 19

Example
class MyAPIComponent extends AbstractAPIComponent {
    public constructor(stsJarPath: string)
    {
        super(stsJarPath);
    }
}

Classes

AbstractAPIComponent