Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

21 righe
404 B

  1. using RenderHookAPI.Hook.Common;
  2. using System;
  3. namespace RenderHookAPI.Interface
  4. {
  5. /// <summary>
  6. /// Note: Deliberately not using MarshalByRefObj
  7. /// </summary>
  8. [Serializable]
  9. public class DrawOverlayEventArgs
  10. {
  11. public IOverlay Overlay { get; set; }
  12. public bool IsUpdatePending { get; set; }
  13. public DrawOverlayEventArgs()
  14. {
  15. }
  16. }
  17. }