Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IInGameNotification.cs
Go to the documentation of this file.
3
4namespace Terraria.UI;
5
6public interface IInGameNotification
7{
8 object CreationObject { get; }
9
10 bool ShouldBeRemoved { get; }
11
12 void Update();
13
14 void DrawInGame(SpriteBatch spriteBatch, Vector2 bottomAnchorPosition);
15
16 void PushAnchor(ref Vector2 positionAnchorBottom);
17
18 void DrawInNotificationsArea(SpriteBatch spriteBatch, Rectangle area, ref int gamepadPointLocalIndexTouse);
19}
void DrawInNotificationsArea(SpriteBatch spriteBatch, Rectangle area, ref int gamepadPointLocalIndexTouse)
void DrawInGame(SpriteBatch spriteBatch, Vector2 bottomAnchorPosition)
void PushAnchor(ref Vector2 positionAnchorBottom)