File: Stars.h

package info (click to toggle)
sear 0.5.0-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,408 kB
  • ctags: 2,580
  • sloc: cpp: 14,902; sh: 10,890; makefile: 172
file content (23 lines) | stat: -rw-r--r-- 275 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef SEAR_STARS_H
#define SEAR_STARS_H

#include "common/types.h"

namespace Sear {

class Stars
{
public:
    Stars();
    ~Stars();
    
    void render();

private:
    Vertex_3* m_locations;
    Color_4* m_colors;
};

} // of namespace Sear

#endif // of SEAR_STARS_H