1 /** @file cl_infine.h  Clientside InFine.
2  *
3  * @authors Copyright © 2010-2015 Daniel Swanson <danij@dengine.net>
4  *
5  * @par License
6  * GPL: http://www.gnu.org/licenses/gpl.html
7  *
8  * <small>This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by the
10  * Free Software Foundation; either version 2 of the License, or (at your
11  * option) any later version. This program is distributed in the hope that it
12  * will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14  * Public License for more details. You should have received a copy of the GNU
15  * General Public License along with this program; if not, see:
16  * http://www.gnu.org/licenses</small>
17  */
18 
19 #ifndef CLIENT_INFINE
20 #define CLIENT_INFINE
21 
22 #include "api_infine.h"
23 #include <de/reader.h>
24 
25 finaleid_t Cl_CurrentFinale();
26 
27 /**
28  * This is where clients start their InFine sequences.
29  */
30 void Cl_Finale(Reader1 *msg);
31 
32 /**
33  * Client sends a request to skip the finale.
34  */
35 void Cl_RequestFinaleSkip();
36 
37 #endif  // CLIENT_INFINE
38