Last change
on this file since 57 was
56,
checked in by Sam Hocevar, 14 years ago
|
- Add licensing terms to most C / C++ files (Ref #5).
|
File size:
626 bytes
|
Rev | Line | |
---|
[56] | 1 | /* |
---|
| 2 | * Abuse - dark 2D side-scrolling platform game |
---|
| 3 | * Copyright (c) 1995 Crack dot Com |
---|
| 4 | * |
---|
| 5 | * This software was released into the Public Domain. As with most public |
---|
| 6 | * domain software, no warranty is made or implied by Crack dot Com or |
---|
| 7 | * Jonathan Clark. |
---|
| 8 | */ |
---|
| 9 | |
---|
| 10 | #include "config.h" |
---|
| 11 | |
---|
[2] | 12 | #include "lisp.hpp" |
---|
| 13 | #include "specs.hpp" |
---|
| 14 | |
---|
| 15 | // stubs... (not called) |
---|
| 16 | // andrew put your caching system here when you get it working. |
---|
| 17 | |
---|
| 18 | long block_size(Cell *level) // return number of bytes to save this block of code |
---|
| 19 | { return 0; } |
---|
| 20 | |
---|
| 21 | void write_level(bFILE *fp, Cell *level) |
---|
| 22 | { ; } |
---|
| 23 | |
---|
| 24 | Cell *load_block(bFILE *fp) |
---|
| 25 | { return NULL; } |
---|
| 26 | |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | |
---|
| 30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.