Update Night of Horror authored by Hong, Xin's avatar Hong, Xin
...@@ -3,6 +3,7 @@ title: Night of Horror ...@@ -3,6 +3,7 @@ title: Night of Horror
--- ---
# Game Design Document # Game Design Document
[TOC] [TOC]
...@@ -317,7 +318,9 @@ public interface IState ...@@ -317,7 +318,9 @@ public interface IState
public void PhysicsUpdate(); public void PhysicsUpdate();
} }
~~~ ~~~
public abstract class StateMachine public abstract class StateMachine
{ {
protected IState currentState; protected IState currentState;
... ...
......