aboutsummaryrefslogtreecommitdiff
path: root/main/puzzle/fsm/IBehaviouralState.hpp
diff options
context:
space:
mode:
authorThomasAvans <tv.intanker@student.avans.nl>2024-04-22 10:40:59 +0200
committerThomasAvans <tv.intanker@student.avans.nl>2024-04-22 10:40:59 +0200
commit1640a4fb4bb0c831dd3f2a28bf99a49f3f41e829 (patch)
tree5889fbd9a70ed926a64a6c3cd0183ae25fc18be5 /main/puzzle/fsm/IBehaviouralState.hpp
parent4354adcf0ae2eabbf419a76fc97746cb71962826 (diff)
Processed review
Diffstat (limited to 'main/puzzle/fsm/IBehaviouralState.hpp')
-rw-r--r--main/puzzle/fsm/IBehaviouralState.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/main/puzzle/fsm/IBehaviouralState.hpp b/main/puzzle/fsm/IBehaviouralState.hpp
deleted file mode 100644
index c41fef3..0000000
--- a/main/puzzle/fsm/IBehaviouralState.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef _FSM_IBEHAVIOURALSTATE_HPP_
-#define _FSM_IBEHAVIOURALSTATE_HPP_
-
-/// <summary>
-/// Sub class used to define methods implemented by behavioural specific states.
-/// </summary>
-class IBehaviouralState {
-public:
- /// <summary>
- /// Enters the current state. Used for setup.
- /// </summary>
- virtual void enter() = 0;
-
- /// <summary>
- /// Updates the current state, used for physics, etc.
- /// </summary>
- virtual void act() = 0;
-
- /// <summary>
- /// Exits the state, used for cleanup.
- /// </summary>
- virtual void exit() = 0;
-};
-
-#endif // _FSM_IBEHAVIOURALSTATE_HPP_ \ No newline at end of file