Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DrawGuide

EventHandler<EventArgs> Microsoft.Xna.Framework.Graphics.GraphicsDevice.DrawGuide
addremovepackage

Definition at line 536 of file GraphicsDevice.cs.

537 {
538 add
539 {
540 _DrawGuideHandler = (EventHandler<EventArgs>)Delegate.Combine(_DrawGuideHandler, value);
541 }
542 remove
543 {
544 _DrawGuideHandler = (EventHandler<EventArgs>)Delegate.Remove(_DrawGuideHandler, value);
545 }
546 }
static ? Delegate Remove(Delegate? source, Delegate? value)
Definition Delegate.cs:463
static ? Delegate Combine(Delegate? a, Delegate? b)
Definition Delegate.cs:379