2010-05-16 16:02:50 -05:00
|
|
|
/*
|
2011-12-03 16:38:03 -06:00
|
|
|
* Copyright 2010-2011, Pier Luigi Fiorini. All rights reserved.
|
2010-05-16 16:02:50 -05:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _CAYA_MESSAGES_H
|
|
|
|
#define _CAYA_MESSAGES_H
|
|
|
|
|
|
|
|
//! Open chat window
|
|
|
|
const uint32 CAYA_OPEN_WINDOW = 'CYow';
|
|
|
|
|
|
|
|
//! Close chat window
|
|
|
|
const uint32 CAYA_CLOSE_WINDOW = 'CYcw';
|
|
|
|
|
|
|
|
//! Chat messages
|
|
|
|
const uint32 CAYA_CHAT = 'CYch';
|
|
|
|
|
|
|
|
#endif // _CAYA_MESSAGES_H
|