-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to documentation from @ 61f4d9d 🚀
- Loading branch information
Showing
82 changed files
with
4,632 additions
and
4,595 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
|
||
Anvil | ||
===== | ||
|
||
|
||
------------ | ||
|
||
Anvil.GetSlots | ||
~~~~~~~~~~~~~~ | ||
.. code-block:: pascal | ||
function TRSAnvil.GetSlots: TBoxArray; | ||
Returns the all available anvil slots. | ||
|
||
Example | ||
------- | ||
.. code-block:: pascal | ||
Debug(Anvil.GetSlots()); | ||
------------ | ||
|
||
Anvil.Setup | ||
~~~~~~~~~~~ | ||
.. code-block:: pascal | ||
procedure Anvil.Setup; | ||
Initializes Anvil variables. | ||
|
||
.. note:: This is automatically called on the **Anvil** variable. | ||
|
||
|
||
------------ | ||
|
||
Anvil.IsOpen | ||
~~~~~~~~~~~~ | ||
.. code-block:: pascal | ||
function TRSAnvil.IsOpen(): Boolean; | ||
function TRSAnvil.IsOpen(waitTime: Int32; interval: Int32 = -1): Boolean; overload; | ||
Returns true/false whether the anvil interface is open or not. | ||
|
||
Example | ||
------- | ||
.. code-block:: pascal | ||
WriteLn Anvil.IsOpen(); | ||
------------ | ||
|
||
Anvil.Close | ||
~~~~~~~~~~~ | ||
.. code-block:: pascal | ||
function TRSAnvil.Close(pressEscape: Boolean): Boolean; | ||
function TRSAnvil.Close(chance: Double = BioHash): Boolean; overload; | ||
Closes the anvil interface, depending on `pressEscape` the function will either click the button | ||
or press escape. | ||
|
||
Example | ||
------- | ||
.. code-block:: pascal | ||
WriteLn Anvil.Close; | ||
------------ | ||
|
||
var Anvil | ||
~~~~~~~~~ | ||
Global Anvil variable. | ||
|
||
|
||
------------ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.