mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
37 lines
618 B
C++
37 lines
618 B
C++
/* Copyright 2003-2009 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "V8DataModel/BasicPartInstance.h"
|
|
|
|
namespace RBX {
|
|
|
|
namespace PART {
|
|
|
|
class ParametricPartInstance
|
|
: public FormFactorPart
|
|
{
|
|
public:
|
|
ParametricPartInstance();
|
|
~ParametricPartInstance();
|
|
};
|
|
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
|
|
extern const char* const sWedge;
|
|
|
|
class Wedge
|
|
: public DescribedCreatable<Wedge, ParametricPartInstance, sWedge>
|
|
{
|
|
private:
|
|
// override
|
|
virtual PartType getPartType() const { return WEDGE_PART; }
|
|
public:
|
|
Wedge();
|
|
~Wedge();
|
|
};
|
|
|
|
|
|
}} // namespace
|