mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-04 04:25:46 -04:00
Import other stuff.
This commit is contained in:
parent
e98e2f465e
commit
36658bee0e
3275 changed files with 56431 additions and 0 deletions
BIN
lumps/fraggle/blackmap.lmp
Normal file
BIN
lumps/fraggle/blackmap.lmp
Normal file
Binary file not shown.
40
lumps/fraggle/dummy_demo.c
Normal file
40
lumps/fraggle/dummy_demo.c
Normal file
|
@ -0,0 +1,40 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
void print_byte(int i)
|
||||
{
|
||||
unsigned char c = i;
|
||||
|
||||
printf("%c", c);
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
// header
|
||||
|
||||
print_byte(109); // version
|
||||
print_byte(0); // skill
|
||||
print_byte(1); // episode
|
||||
print_byte(1); // level
|
||||
print_byte(0); // mode (single/coop)
|
||||
print_byte(0); // respawn
|
||||
print_byte(0); // fast monsters
|
||||
print_byte(0); // nomonsters
|
||||
print_byte(0); // viewpoint
|
||||
print_byte(1); // player 1 present
|
||||
print_byte(0); // player 2 present
|
||||
print_byte(0); // player 3 present
|
||||
print_byte(0); // player 4 present
|
||||
|
||||
// one frame and then quit
|
||||
|
||||
print_byte(0);
|
||||
print_byte(0);
|
||||
print_byte(0);
|
||||
print_byte(0);
|
||||
|
||||
// end of demo
|
||||
|
||||
print_byte(0x80); // end of demo
|
||||
}
|
||||
|
1
lumps/fraggle/freedoom.lmp
Normal file
1
lumps/fraggle/freedoom.lmp
Normal file
|
@ -0,0 +1 @@
|
|||
0.4
|
Loading…
Add table
Add a link
Reference in a new issue