mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-10 14:09:46 +03:00
36 lines
776 B
C++
36 lines
776 B
C++
/********************************************************************
|
|
Minecraft: Pocket Edition - Decompilation Project
|
|
Copyright (C) 2023 iProgramInCpp
|
|
|
|
The following code is licensed under the BSD 1 clause license.
|
|
SPDX-License-Identifier: BSD-1-Clause
|
|
********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "PolygonQuad.hpp"
|
|
#include "ModelPart.hpp"
|
|
|
|
class ModelPart;
|
|
|
|
class Cube
|
|
{
|
|
public:
|
|
Cube(ModelPart*, int, int, float, float, float, int, int, int, float);
|
|
|
|
void compile(Tesselator& t, float scale);
|
|
void setId(const std::string& s);
|
|
|
|
public:
|
|
VertexPT m_verts[8];
|
|
PolygonQuad m_faces[6];
|
|
std::string m_id;
|
|
float field_29C;
|
|
float field_2A0;
|
|
float field_2A4;
|
|
float field_2A8;
|
|
float field_2AC;
|
|
float field_2B0;
|
|
};
|
|
|