2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-21 19:39:13 +00:00

CCubeRenderer: More rendering imps

This commit is contained in:
2022-03-06 19:07:00 -08:00
parent aea7ac597a
commit 35674c27e5
4 changed files with 183 additions and 83 deletions

View File

@@ -4,7 +4,14 @@
#include <zeus/CAABox.hpp>
namespace metaforce {
enum class EDrawableType : u16 { WorldSurface, Particle, Actor, SimpleShadow, Decal };
enum class EDrawableType : u16 {
WorldSurface,
Particle,
Actor,
SimpleShadow,
Decal,
Invalid = 0xFFFF,
};
class CDrawable {
EDrawableType x0_type;