/* * Abuse - dark 2D side-scrolling platform game * Copyright (c) 1995 Crack dot Com * * This software was released into the Public Domain. As with most public * domain software, no warranty is made or implied by Crack dot Com or * Jonathan Clark. */ #ifndef __HELP_HPP_ #define __HELP_HPP_ #include "event.hpp" extern int total_help_screens; extern int *help_screens; void help_handle_event(event &ev); void draw_help(); // called from game draw if in help mode #endif