mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 13:57:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
/* 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
|
||||
Reference in New Issue
Block a user