File: hull_weapon_light.cpp

package info (click to toggle)
rafkill 1.2.2-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 13,268 kB
  • ctags: 5,074
  • sloc: cpp: 13,508; makefile: 64; sh: 14
file content (12 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
#include "defs.h"
#include "bitmap.h"
#include "hull_weapon.h"
#include "hull_weapon_light.h"

Light_WHull::Light_WHull():
HullWeapon( 0, 1, 1 ){}

void Light_WHull::Draw( const Bitmap & who, int x, int y ) {
	// circlefill( who, x, y, 2, makecol(0,100,250) );
	who.circleFill( x, y, 2, Bitmap::makeColor(0,100,250) );
}