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.

12 lines
177 B

  1. using System;
  2. namespace RenderHookAPI.Hook.Common
  3. {
  4. public interface IOverlayElement : ICloneable
  5. {
  6. bool Hidden { get; set; }
  7. void Frame();
  8. }
  9. }