mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
30 lines
577 B
C++
30 lines
577 B
C++
/* Copyright 2003-2009 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "V8DataModel/PartInstance.h"
|
|
#include "V8DataModel/BasicPartInstance.h"
|
|
#include "reflection/reflection.h"
|
|
|
|
#ifdef _PRISM_PYRAMID_
|
|
|
|
namespace RBX {
|
|
|
|
extern const char* const sCornerWedge;
|
|
|
|
class CornerWedgeInstance
|
|
: public DescribedCreatable<CornerWedgeInstance, PartInstance, sCornerWedge>
|
|
{
|
|
public:
|
|
|
|
CornerWedgeInstance();
|
|
~CornerWedgeInstance();
|
|
|
|
/*override*/ virtual PartType getPartType() const { return CORNERWEDGE_PART; }
|
|
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
#endif // _PRISM_PYRAMID_
|