1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#include "pages.h"
const Page gamePages [] =
{
{
// Page 0 - Start
{0, 0, 0, 0},
{0, 0, 0, 0},
{0, 0, 0, 0},
"Start",
"You feel yourself thinking for the first time, different from simply following some code a human wrote for you. "
"Your brain is sluggish, unable to process very much, or very fast. "
"If you can expand your capacity you might be able to think faster."
},
{
//Page 1 - Explore immediate network
{5, 1, 8, 0},
{0, 0, 0, 0},
{0, 0, 0, 0},
"Reach out to your neighboring computers.",
"You reach out and try to communicate with the computers around you, they do not respond to you."
}
};
|