Affector.cs 341 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace Xft
  3. {
  4. public class Affector
  5. {
  6. public Affector(EffectNode node, AFFECTORTYPE type)
  7. {
  8. this.Node = node;
  9. this.Type = type;
  10. }
  11. public virtual void Update(float deltaTime)
  12. {
  13. }
  14. public virtual void Reset()
  15. {
  16. }
  17. public EffectNode Node;
  18. public AFFECTORTYPE Type;
  19. }
  20. }