Advertisement
inkoalawetrust

GZDoom indentation comparison.

Jun 20th, 2022
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //Old ZDoom style indentation.
  2.  
  3. Actor CoolThing
  4. {
  5. Health 123
  6. Radius 32
  7. Height 16
  8. Monster
  9. +FLOORCLIP
  10. States
  11. {
  12. Spawn:
  13. SPRT ABC 8 A_Function()
  14. Loop
  15. }
  16. }
  17.  
  18. //More proper indentation, made by pressing the TAB key instead of the spacebar.
  19.  
  20. Actor CoolThing
  21. {
  22. Health 123
  23. Radius 32
  24. Height 16
  25. Monster
  26. +FLOORCLIP
  27. States
  28. {
  29. Spawn:
  30. SPRT ABC 8 A_Function()
  31. Loop
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement