Skip to content

Commit

Permalink
Added a proper GPL banner
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Sep 4, 2003
1 parent d2c5ec8 commit 733bfe7
Show file tree
Hide file tree
Showing 14 changed files with 261 additions and 94 deletions.
24 changes: 19 additions & 5 deletions doomsday/Src/cl_frame.c
@@ -1,9 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** CL_FRAME.C
//**
//**************************************************************************
/*
* cl_frame.c: Frame Reception
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
24 changes: 19 additions & 5 deletions doomsday/Src/cl_main.c
@@ -1,9 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** CL_MAIN.C
//**
//**************************************************************************
/*
* cl_main.c: Network Client
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
24 changes: 19 additions & 5 deletions doomsday/Src/cl_mobj.c
@@ -1,9 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** CL_MOBJ.C
//**
//**************************************************************************
/*
* cl_mobj.c: Client Map Objects
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
24 changes: 19 additions & 5 deletions doomsday/Src/cl_player.c
@@ -1,9 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** CL_PLAYER.C
//**
//**************************************************************************
/*
* cl_player.c: Clientside Player Management
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
24 changes: 19 additions & 5 deletions doomsday/Src/cl_sound.c
@@ -1,9 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** CL_SOUND.C
//**
//**************************************************************************
/*
* cl_sound.c: Clientside Sounds
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
26 changes: 19 additions & 7 deletions doomsday/Src/cl_world.c
@@ -1,11 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** CL_WORLD.C
//**
//** Client side world simulation.
//**
//**************************************************************************
/*
* cl_world.c: Clientside World Management
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
32 changes: 23 additions & 9 deletions doomsday/Src/net_demo.c
@@ -1,12 +1,26 @@

//**************************************************************************
//**
//** DD_DEMO.C
//**
//** Handling of demo recording and playback.
//** Opening of, writing to, reading from and closing of demo files.
//**
//**************************************************************************
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

/*
* net_demo.c: Demos
*
* Handling of demo recording and playback.
* Opening of, writing to, reading from and closing of demo files.
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
3 changes: 1 addition & 2 deletions doomsday/Src/net_main.c
Expand Up @@ -18,8 +18,7 @@
/*
* net_main.c: Network Subsystem
*
* Client/server networking.
* Player number zero is always the server.
* Client/server networking. Player number zero is always the server.
* In single-player games there is only the server present.
*
* Once upon a time based on Hexen's peer-to-peer network code.
Expand Down
2 changes: 1 addition & 1 deletion doomsday/Src/net_ping.c
Expand Up @@ -18,7 +18,7 @@
/*
* net_ping.c: Pinging Clients and the Server
*
* Warning: this is not a very accurate ping.
* Warning: This is not a very accurate ping.
*/

// HEADER FILES ------------------------------------------------------------
Expand Down
24 changes: 19 additions & 5 deletions doomsday/Src/sv_frame.c
@@ -1,9 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** SV_FRAME.C
//**
//**************************************************************************
/*
* sv_frame.c: Frame Generation and Transmission
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
24 changes: 19 additions & 5 deletions doomsday/Src/sv_main.c
@@ -1,9 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** SV_MAIN.C
//**
//**************************************************************************
/*
* sv_main.c: Network Server
*/

// HEADER FILES ------------------------------------------------------------

Expand Down
26 changes: 19 additions & 7 deletions doomsday/Src/sv_missile.c
@@ -1,11 +1,23 @@
/* DE1: $Id$
* Copyright (C) 2003 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not: http://www.opensource.org/
*/

//**************************************************************************
//**
//** SV_MISSILE.C
//**
//** The Pool Missile Record.
//**
//**************************************************************************
/*
* sv_missile.c: Delta Pool Missile Record
*/

// HEADER FILES ------------------------------------------------------------

Expand Down

0 comments on commit 733bfe7

Please sign in to comment.