/* * 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 __SCENE_HPP_ #define __SCENE_HPP_ #define MAX_SCROLL_DATA 4096 #include "fonts.hpp" void play_scene(char *script, char *filename, JCFont *font); #endif