Guest User

Untitled

a guest
Nov 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class ActivatableLogic : LogicBase<IActivatableEntity>
  2. {
  3. public void Active()
  4. {
  5. CurrentInstance.IsActive = true;
  6. }
  7.  
  8. public void DeActivate()
  9. {
  10. CurrentInstance.IsActive = false;
  11. }
  12. }
Add Comment
Please, Sign In to add comment