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 |
Example
class MyAPIComponent extends AbstractAPIComponent {
public constructor(stsJarPath: string)
{
super(stsJarPath);
}
}