#pragma once
#include "datatypes.h"
#include "input.h"
/*
Copyright (c) 2013-2021 Devine Lu Linvega
2018 web port by rezmason
2021 C89 port by rezmason
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE.
*/
/*
The walkthrough module is simply a list of player actions
that play the game from start to finish, and a function that
iterates over them.
*/
int Walkthrough_Init(char *data);
void Walkthrough_Quit();
void Walkthrough_Reset();
InputType Walkthrough_Next();