File: stars.h

package info (click to toggle)
qonk 0.3.1-3.2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 2,296 kB
  • sloc: cpp: 14,995; sh: 3,464; makefile: 196
file content (29 lines) | stat: -rw-r--r-- 374 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2005 by Anthony Liekens anthony@liekens.net

#ifndef STARS_H
#define STARS_H

#include <vector>

#include "coordinate.h"

class Star {
private:
	int brightness;
	Coordinate c;
public:
	Star();
	void render( ) const;
};

class Stars : public std::vector< Star > {
public:
	Stars();
	Stars( int n );
	
	void addStars( int n );
	
	void render( ) const;
};

#endif