mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-31 04:23:31 +00:00
the whole game
This commit is contained in:
29
src/client/model/geom/Cube.h
Executable file
29
src/client/model/geom/Cube.h
Executable file
@@ -0,0 +1,29 @@
|
||||
#ifndef NET_MINECRAFT_CLIENT_MODEL_GEOM__Cube_H__
|
||||
#define NET_MINECRAFT_CLIENT_MODEL_GEOM__Cube_H__
|
||||
|
||||
//package net.minecraft.client.model;
|
||||
|
||||
#include <string>
|
||||
#include "Polygon.h"
|
||||
|
||||
class Tesselator;
|
||||
class ModelPart;
|
||||
|
||||
class Cube
|
||||
{
|
||||
public:
|
||||
Cube(ModelPart* modelPart, int xTexOffs, int yTexOffs, float x0, float y0, float z0, int w, int h, int d, float g);
|
||||
|
||||
void compile(Tesselator& t, float scale);
|
||||
Cube* setId(const std::string& id);
|
||||
private:
|
||||
|
||||
VertexPT vertices[8];
|
||||
PolygonQuad polygons[6];
|
||||
std::string id;
|
||||
const float x0, y0, z0, x1, y1, z1;
|
||||
|
||||
friend class ModelPart;
|
||||
};
|
||||
|
||||
#endif /*NET_MINECRAFT_CLIENT_MODEL_GEOM__Cube_H__*/
|
||||
Reference in New Issue
Block a user