diff --git a/content/pong/polish/title.md b/content/pong/polish/title.md index 9f6ac6b..918664e 100644 --- a/content/pong/polish/title.md +++ b/content/pong/polish/title.md @@ -18,6 +18,8 @@ export abstract class State { } ``` +Remember, _abstract_ means that the class cannot be used directly, but describes features that exist in inherited classes. So we know that anything we make that inherits from State must have a load(), update(dt), and draw() method. + Let's create a new folder, **game/states**, and put **game.ts** in there. Let's also make it inherit from State: ```ts diff --git a/content/pong/polish/win_condition.md b/content/pong/polish/win_condition.md new file mode 100644 index 0000000..e99f471 --- /dev/null +++ b/content/pong/polish/win_condition.md @@ -0,0 +1,6 @@ +--- +title: "Win_condition" +date: 2019-06-09T19:10:15-07:00 +draft: true +--- +