File: hull_weapon_s_s.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 (15 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "hull_weapon.h"
#include "bitmap.h"
#include "hull_weapon_s_s.h"

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

void SS_WHull::Draw( const Bitmap & who, int x, int y ) {
	/*
	circlefill( who, x, y, 3, makecol(255,0,0) );
	circlefill( who, x, y, 1, makecol(255,255,255) );
	*/
	who.circleFill( x, y, 3, Bitmap::makeColor(255,0,0) );
	who.circleFill( x, y, 1, Bitmap::makeColor(255,255,255) );
}