Advertisement
heroofhyla

Untitled

Mar 29th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. ├───entity
  2. │ ├───combat
  3. │ │ ├───battler
  4. │ │ │ ├───Gremlin
  5. │ │ │ │ Gremlin.gd
  6. │ │ │ │ Gremlin.tscn
  7. │ │ │ │ HitBox.tres
  8. │ │ │ │ IState.gd
  9. │ │ │ │ StateAttack.gd
  10. │ │ │ │ StateIdle.gd
  11. │ │ │ │ StateInit.gd
  12. │ │ │ │
  13. │ │ │ └───MageBattler
  14. │ │ │ IState.gd
  15. │ │ │ MageBattler.gd
  16. │ │ │ MageBattler.tscn
  17. │ │ │ StateAim.gd
  18. │ │ │ StateDodgeReady.gd
  19. │ │ │ StateDuck.gd
  20. │ │ │ StateFire.gd
  21. │ │ │ StateIdle.gd
  22. │ │ │ StateJump.gd
  23. │ │ │ StateSidestep.gd
  24. │ │ │
  25. │ │ └───CombatManager
  26. │ │ CombatManager.gd
  27. │ │ CombatManager.tscn
  28. │ │ IState.gd
  29. │ │ StateAfterEnemy.gd
  30. │ │ StateAfterPlayer.gd
  31. │ │ StateEndCombat.gd
  32. │ │ StateEnemyTurn.gd
  33. │ │ StateOff.gd
  34. │ │ StatePlayerTurn.gd
  35. │ │ StateStartCombat.gd
  36. │ │
  37. │ ├───ui
  38. │ │ ├───MainMenu
  39. │ │ │ MainMenu.gd
  40. │ │ │ MainMenu.tscn
  41. │ │ │ StateOff.gd
  42. │ │ │
  43. │ │ ├───MenuWindow
  44. │ │ │ IState.gd
  45. │ │ │ MenuWindow.gd
  46. │ │ │ MenuWindow.tscn
  47. │ │ │ StateSelecting.gd
  48. │ │ │ StateUnfocused.gd
  49. │ │ │
  50. │ │ └───MessageWindow
  51. │ │ ExpandableTextWindow.gd
  52. │ │ ExpandableTextWindow.tscn
  53. │ │ IState.gd
  54. │ │ MessageWindow.gd
  55. │ │ MessageWindow.tscn
  56. │ │ StateHide.gd
  57. │ │ StateOff.gd
  58. │ │ StatePopup.gd
  59. │ │ StatePrinting.gd
  60. │ │ StateReading.gd
  61. │ │
  62. │ └───world
  63. │ │ IState.gd
  64. │ │ StateActive.gd
  65. │ │ StateMenu.gd
  66. │ │ StatePause.gd
  67. │ │ StateShowMessage.gd
  68. │ │ World.gd
  69. │ │ World.tscn
  70. │ │
  71. │ ├───actor
  72. │ │ └───MageActor
  73. │ │ IState.gd
  74. │ │ MageActor.gd
  75. │ │ MageActor.tscn
  76. │ │ StateActive.gd
  77. │ │
  78. │ └───doodad
  79. │ PressurePlate.gd
  80. │ PressurePlate.tscn
  81. │ SwitchWall.gd
  82. │ SwitchWall.tscn
  83. │ Vase.gd
  84. │ vase.tscn
  85. ├───interface
  86. │ IState.gd
  87. │ IStateMachine.gd
  88. ├───scene
  89. │ ├───Game
  90. │ │ Game.gd
  91. │ │ Game.tscn
  92. │ │ IState.gd
  93. │ │ StateCombat.gd
  94. │ │ StateMap.gd
  95. │ │
  96. │ └───GameOver
  97. │ GameOver.tscn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement