-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show NPC name in status bar when clicking the NPC
- Loading branch information
1 parent
3e0b86e
commit a3e4d9f
Showing
3 changed files
with
20 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
using EOLib.Localization; | ||
using EOLib.Domain.Interact.Quest; | ||
using EOLib.Localization; | ||
|
||
namespace EndlessClient.HUD | ||
{ | ||
public interface IStatusLabelSetter | ||
public interface IStatusLabelSetter : IStatusLabelNotifier | ||
{ | ||
void SetStatusLabel(EOResourceID type, EOResourceID text, string appended = ""); | ||
|
||
void SetStatusLabel(EOResourceID type, string prepended, EOResourceID text); | ||
|
||
void SetStatusLabel(EOResourceID type, string text); | ||
|
||
void SetStatusLabel(string text); | ||
} | ||
} |
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