mirror of
https://git.zap.org.au/git/trader.git
synced 2024-11-03 17:27:29 -05:00
Create preliminary versions of the source code and manual page
This commit is contained in:
parent
79bf9cc707
commit
f66fb88c69
34
doc/trader.6
Normal file
34
doc/trader.6
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
.\" *********************************************************************
|
||||||
|
.\" * *
|
||||||
|
.\" * Star Traders: A Game of Interstellar Trading *
|
||||||
|
.\" * Copyright (C) 1990-2011, John Zaitseff *
|
||||||
|
.\" * *
|
||||||
|
.\" *********************************************************************
|
||||||
|
.\"
|
||||||
|
.\" Author: John Zaitseff <J.Zaitseff@zap.org.au>
|
||||||
|
.\" Date: 14th June, 2011
|
||||||
|
.\" Version: 7.0
|
||||||
|
.\"
|
||||||
|
.\" $Id$
|
||||||
|
.\"
|
||||||
|
.\" 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 3 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, see http://www.gnu.org/licenses/.
|
||||||
|
|
||||||
|
.TH TRADER 6 "14th June, 2011" "Unix-like systems"
|
||||||
|
.SH NAME
|
||||||
|
trader \- a game of interstellar trading
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.SH OPTIONS
|
||||||
|
.SH AUTHOR
|
||||||
|
John Zaitseff <J.Zaitseff@zap.org.au>
|
34
src/trader.c
Normal file
34
src/trader.c
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/************************************************************************
|
||||||
|
* *
|
||||||
|
* Star Traders: A Game of Interstellar Trading *
|
||||||
|
* Copyright (C) 1990-2011, John Zaitseff *
|
||||||
|
* *
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
Author: John Zaitseff <J.Zaitseff@zap.org.au>
|
||||||
|
Date: 14th June, 2011
|
||||||
|
Version: 7.0
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
|
||||||
|
Star Traders is a simple game of interstellar trading, where the object
|
||||||
|
of the game is to create companies, buy and sell shares, borrow and
|
||||||
|
repay money, in order to become the wealthiest player (the winner).
|
||||||
|
|
||||||
|
This file, "trader.c", contains the main program for Star Traders.
|
||||||
|
|
||||||
|
|
||||||
|
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 3 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, see http://www.gnu.org/licenses/.
|
||||||
|
*/
|
42
src/trader.h
Normal file
42
src/trader.h
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
/************************************************************************
|
||||||
|
* *
|
||||||
|
* Star Traders: A Game of Interstellar Trading *
|
||||||
|
* Copyright (C) 1990-2011, John Zaitseff *
|
||||||
|
* *
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
Author: John Zaitseff <J.Zaitseff@zap.org.au>
|
||||||
|
Date: 14th June, 2011
|
||||||
|
Version: 7.0
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
|
||||||
|
Star Traders is a simple game of interstellar trading, where the object
|
||||||
|
of the game is to create companies, buy and sell shares, borrow and
|
||||||
|
repay money, in order to become the wealthiest player (the winner).
|
||||||
|
|
||||||
|
This file, "trader.h", contains default game values and certain other
|
||||||
|
definitions for Star Traders.
|
||||||
|
|
||||||
|
|
||||||
|
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 3 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, see http://www.gnu.org/licenses/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __TRADER_H__
|
||||||
|
#define __TRADER_H__
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* __TRADER_H__ */
|
Loading…
Reference in New Issue
Block a user