21 lines
441 B
C
21 lines
441 B
C
/**
|
|
* @file llclickaction.h
|
|
* @author James Cook
|
|
* @brief Constants for single-click actions on objects
|
|
*
|
|
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
|
|
* $License$
|
|
*/
|
|
|
|
#ifndef LL_LLCLICKACTION_H
|
|
#define LL_LLCLICKACTION_H
|
|
|
|
const U8 CLICK_ACTION_NONE = 0;
|
|
const U8 CLICK_ACTION_TOUCH = 0;
|
|
const U8 CLICK_ACTION_SIT = 1;
|
|
const U8 CLICK_ACTION_BUY = 2;
|
|
const U8 CLICK_ACTION_PAY = 3;
|
|
const U8 CLICK_ACTION_OPEN = 4;
|
|
|
|
#endif
|