You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 8 месеци
1234567891011121314151617181920
  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. }