18 lines
374 B
C
18 lines
374 B
C
|
/*
|
||
|
* Copyright 2010, Pier Luigi Fiorini. All rights reserved.
|
||
|
* 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
|