~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/livery.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman, Jordi Mallach
  • Date: 2009-04-15 18:22:10 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090415182210-22ktb8kdbp2tf3bm
[ Matthijs Kooijman ]
* New upstream release.
* Remove Debian specific desktop file, upstream provides one now. 
* Add debian/watch file.

[ Jordi Mallach ]
* Bump Standards-Version to 3.8.1, with no changes required.
* Move to debhelper compat 7. Bump Build-Depends accordingly.
* Use dh_prep.
* Add "set -e" to config script.
* Remove a few extra doc files that get installed by upstream Makefile.
* Add more complete copyright information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: livery.h 11874 2008-01-16 11:25:15Z rubidium $ */
 
1
/* $Id: livery.h 14422 2008-09-30 20:51:04Z rubidium $ */
2
2
 
3
 
/** @file livery.h */
 
3
/** @file livery.h Functions/types related to livery colours. */
4
4
 
5
5
#ifndef LIVERY_H
6
6
#define LIVERY_H
7
7
 
8
 
#include "player_type.h"
 
8
#include "company_type.h"
9
9
 
10
10
/* List of different livery schemes. */
11
11
enum LiveryScheme {
67
67
};
68
68
 
69
69
/**
70
 
 * Reset the livery schemes to the player's primary colour.
71
 
 * This is used on loading games without livery information and on new player start up.
72
 
 * @param p Player to reset.
 
70
 * Reset the livery schemes to the company's primary colour.
 
71
 * This is used on loading games without livery information and on new company start up.
 
72
 * @param c Company to reset.
73
73
 */
74
 
void ResetPlayerLivery(Player *p);
 
74
void ResetCompanyLivery(Company *c);
75
75
 
76
76
#endif /* LIVERY_H */