
/** reederei.h ********************************/
/*                                            */
/* Copyright © 1988 by Digital Artists (DgA). */
/* All Rights reserved.                       */
/*                                            */
/**********************************************/

/*
Firma   : Digital Artists (DgA)
Objekt  : reederei/reederei.h
Version : 1.0
Autor   : [RK]
Datum   : 08-14-1988
Status  : geheim
*/

#include <exec/types.h>

struct Schiff
 {
  UBYTE *Typ;
  USHORT MinLadung,MaxLadung;
  USHORT MinKabinen,MaxKabinen;
  USHORT Grundpreis;
  UBYTE *Name;
  USHORT Ladung;
  USHORT Kabinen;
  SHORT Alter;
 };

struct Spieler
 {
  UBYTE *Name;
  UBYTE *Firma;
  LONG Geld;
  USHORT Schiffsanzahl;
  struct Schiff Schiffsdaten[5];
  ULONG WarenBesitz[6];
  ULONG Aktien[5];
  USHORT Routen[5][3];
 };

struct Quartal
 {
  USHORT Quartal;
  ULONG Aktienwert[5];
  ULONG WarenWMPreis[6];
 };

struct Hafen
 {
  UBYTE *Name;
  USHORT Entfernung;
  UBYTE Ware;
  ULONG WarenKaufPreis;
  UBYTE HafenIndex;
 };
