From c0bd480f080176fdc2853d380274d9e90681fe6c Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Sun, 24 Jan 2021 21:17:02 -0800 Subject: [PATCH] set up Game chapter --- content/Audio/_index.md | 2 +- content/Game/_index.md | 6 ++++++ content/Graphics/_index.md | 2 +- content/Input/_index.md | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 content/Game/_index.md diff --git a/content/Audio/_index.md b/content/Audio/_index.md index ac1833e..8428594 100644 --- a/content/Audio/_index.md +++ b/content/Audio/_index.md @@ -1,7 +1,7 @@ --- title: "Audio" date: 2021-01-24T20:15:28-08:00 -weight: 3 +weight: 4 --- MoonWorks.Audio is implemented using the [FAudio](https://github.com/FNA-XNA/FAudio) library. The main entry point for audio-related functions is `AudioDevice`. A reference to this class is automatically created and can be retrieved from your `Game` subclass. diff --git a/content/Game/_index.md b/content/Game/_index.md new file mode 100644 index 0000000..188e49a --- /dev/null +++ b/content/Game/_index.md @@ -0,0 +1,6 @@ +--- +title: "Game" +date: 2021-01-24T21:15:07-08:00 +weight: 2 +--- + diff --git a/content/Graphics/_index.md b/content/Graphics/_index.md index b3210d1..4467b66 100644 --- a/content/Graphics/_index.md +++ b/content/Graphics/_index.md @@ -1,7 +1,7 @@ +++ title = "Graphics" date = 2021-01-24T20:51:36-08:00 -weight = 4 +weight = 5 chapter = true +++ diff --git a/content/Input/_index.md b/content/Input/_index.md index 6bdb69f..5e0daae 100644 --- a/content/Input/_index.md +++ b/content/Input/_index.md @@ -1,7 +1,7 @@ --- title: "Input" date: 2021-01-23T16:39:09-08:00 -weight: 2 +weight: 3 --- All input-related information can be retrieved through the `Inputs`.