mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
16 lines
267 B
C++
16 lines
267 B
C++
/*
|
|
Copyright 2003-2006 ROBLOX Corporation, All Rights Reserved
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace RBX
|
|
{
|
|
// Base class to control all selection functionality
|
|
class RBXBaseClass Selectable
|
|
{
|
|
public:
|
|
virtual bool isSelectable3d() { return true; }
|
|
};
|
|
} // namespace
|