15 lines
179 B
C
15 lines
179 B
C
|
#ifndef SPIRIT_H
|
||
|
#define SPIRIT_H
|
||
|
|
||
|
namespace cube {
|
||
|
class Spirit {
|
||
|
public:
|
||
|
char x;
|
||
|
char y;
|
||
|
char z;
|
||
|
char material;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // SPIRIT_H
|