-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed preset reading, added curse timer
- Loading branch information
1 parent
dd689d9
commit e257cc0
Showing
8 changed files
with
227 additions
and
6 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -1,9 +1,21 @@ | ||
namespace SotnApi.Interfaces | ||
{ | ||
/// <summary> | ||
/// Manipulates VRAM elements. | ||
/// </summary> | ||
public interface IRenderingApi | ||
{ | ||
/// <summary> | ||
/// Colors a room on the map as a 3x3 square with borders. | ||
/// </summary> | ||
void ColorMapRoom(uint row, uint col, uint color, uint borderColor); | ||
/// <summary> | ||
/// Colors a location on the map as a 2x2 square. | ||
/// </summary> | ||
void ColorMapLocation(uint row, uint col, uint color); | ||
/// <summary> | ||
/// Checks if a room on the minimap is rendered. | ||
/// </summary> | ||
bool RoomIsRendered(uint row, uint col); | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.