Mercurial > hg > openttd
view src/news_func.h @ 9745:26478249b3d0 draft
(svn r13880) -Codechange: Replace numbers with Colours enum on intro gui, and align a bit the code
author | belugas <belugas@openttd.org> |
---|---|
date | Wed, 30 Jul 2008 16:23:55 +0000 |
parents | 27697e657d2e |
children | 57aa34285d05 |
line wrap: on
line source
/* $Id$ */ /** @file news_func.h Functions related to news. */ #ifndef NEWS_FUNC_H #define NEWS_FUNC_H #include "news_type.h" #include "vehicle_type.h" void AddNewsItem(StringID string, NewsSubtype subtype, uint data_a, uint data_b, void *free_data = NULL); void NewsLoop(); void InitNewsItemStructs(); extern NewsItem _statusbar_news_item; extern bool _news_ticker_sound; extern NewsTypeData _news_type_data[NT_END]; /** * Delete a news item type about a vehicle * if the news item type is INVALID_STRING_ID all news about the vehicle get * deleted */ void DeleteVehicleNews(VehicleID, StringID news); #endif /* NEWS_FUNC_H */