Team Fortress 2 Source Code as on 22/4/2020
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.

30 lines
642 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. #ifndef PROCEDURALPRESETS_H
  7. #define PROCEDURALPRESETS_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. enum
  12. {
  13. PROCEDURAL_PRESET_NOT = 0,
  14. PROCEDURAL_PRESET_IN_CROSSFADE,
  15. PROCEDURAL_PRESET_OUT_CROSSFADE,
  16. PROCEDURAL_PRESET_REVEAL,
  17. PROCEDURAL_PRESET_PASTE,
  18. PROCEDURAL_PRESET_JITTER,
  19. PROCEDURAL_PRESET_SMOOTH,
  20. PROCEDURAL_PRESET_SHARPEN,
  21. PROCEDURAL_PRESET_SOFTEN,
  22. PROCEDURAL_PRESET_STAGGER,
  23. // Must be last
  24. NUM_PROCEDURAL_PRESET_TYPES,
  25. };
  26. #endif // PROCEDURALPRESETS_H