25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
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. }