Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
null_display.h
Go to the documentation of this file.
1 // -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*-
2 
3 #ifndef VEGASTRIKE_GFX_RADAR_NULL_DISPLAY_H
4 #define VEGASTRIKE_GFX_RADAR_NULL_DISPLAY_H
5 
6 #include "radar.h"
7 
8 namespace Radar
9 {
10 
11 class NullDisplay : public Display
12 {
13 public:
14  // Shows nothing
15  void Draw(const Sensor&, VSSprite *, VSSprite *) {}
16 };
17 
18 } // namespace Radar
19 
20 #endif