mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 05:37:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
/* 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 sRightAngleRamp;
|
||||
|
||||
class RightAngleRampInstance
|
||||
: public DescribedNonCreatable<RightAngleRampInstance, PartInstance, sRightAngleRamp>
|
||||
{
|
||||
public:
|
||||
|
||||
RightAngleRampInstance();
|
||||
~RightAngleRampInstance();
|
||||
|
||||
/*override*/ virtual PartType getPartType() const { return RIGHTANGLERAMP_PART; }
|
||||
|
||||
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // _PRISM_PYRAMID_
|
||||
Reference in New Issue
Block a user