git repos / blockattack-game

source/code/puzzlehandler.hpp

browsing at commit = b2ff93be12aaeee839c04975e2f3646ce21e09fc

raw · blame · history

/* 
 * File:   puzzlehandler.hpp
 * Author: poul
 *
 * Created on 22. august 2015, 20:09
 */

#ifndef PUZZLEHANDLER_HPP
#define	PUZZLEHANDLER_HPP


#include <string>

int PuzzleNumberOfMovesAllowed(int level);
int PuzzleGetBrick(int level, int x, int y);
bool PuzzleIsCleared(int level);
int LoadPuzzleStages();
int PuzzleGetNumberOfPuzzles();
void PuzzleSetClear(int level);
const std::string& PuzzleGetName();
void PuzzleSetName(const std::string& name);
void PuzzleSetSavePath(const std::string& filepath);

#endif	/* PUZZLEHANDLER_HPP */