mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
18 lines
224 B
C++
18 lines
224 B
C++
/**
|
|
* SelectState.h
|
|
* Copyright (c) 2012 ROBLOX Corp. All Rights Reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace RBX
|
|
{
|
|
enum SelectState
|
|
{
|
|
SELECT_NORMAL,
|
|
SELECT_LIMIT,
|
|
SELECT_HOVER,
|
|
};
|
|
|
|
} // namespace
|