Mercurial > hg > Game > Cerium
view old/simple_render/SpanPack.h @ 1825:82c2b9eec625 draft
remove error and warning fileread(but cannot running)
author | Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Dec 2013 20:04:04 +0900 |
parents | 3bc98f6d31ff |
children |
line wrap: on
line source
#ifndef INCLUDED_SPAN_PACK #define INCLUDED_SPAN_PACK #ifndef INCLUDED_SPAN # include "Span.h" #endif #define MAX_SIZE_SPAN 70 class SpanPack { public: /* fields */ struct SpanInfo { int size; int light_pos[3]; int light_rgb[3]; } info; Span span[MAX_SIZE_SPAN]; SpanPack *next; public: /* methods */ void init(void); }; #endif