Advertisement
Guest User

Untitled

a guest
Mar 9th, 2020
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using Turbo.Plugins.Default;
  2.  
  3. namespace Turbo.Plugins.Miqui.CustomizableActorDecorators
  4. {
  5.     public interface IActorDecorator
  6.     {
  7.         /// Called at runtime, should return the current decorator to use on the actor
  8.         /// Can return null: In that case nothing will be decorated. Useful if you don't want to show an Actor outside of Grifts or on some classes for example.
  9.         WorldDecoratorCollection getActorDecorator(IController hud, IActor actor);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement