mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
16 lines
289 B
C++
16 lines
289 B
C++
/* Copyright 2003-2007 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "BevelMesh.h"
|
|
|
|
namespace RBX
|
|
{
|
|
extern const char* const sCylinderMesh;
|
|
class CylinderMesh
|
|
: public DescribedCreatable<CylinderMesh, BevelMesh, sCylinderMesh>
|
|
{
|
|
public:
|
|
CylinderMesh(){}
|
|
};
|
|
} |