Skip to content
GitLab
Explore
Sign in
Changes
Page history
Update Night of Horror
authored
Nov 25, 2024
by
Hong, Xin
Show whitespace changes
Inline
Side-by-side
home.md
View page @
ffec6038
...
...
@@ -3,6 +3,7 @@ title: Night of Horror
---
# Game Design Document
[TOC]
...
...
@@ -317,7 +318,9 @@ public interface IState
public void PhysicsUpdate();
}
~~~
public abstract class StateMachine
{
protected IState currentState;
...
...