aboutsummaryrefslogtreecommitdiff
path: root/signals.lua
diff options
context:
space:
mode:
authororwell96 <mono96.mml@gmail.com>2016-10-22 20:38:34 +0200
committerorwell96 <mono96.mml@gmail.com>2016-10-22 20:38:34 +0200
commit7c53f1692217ca0f6f10babe99054bf443171a16 (patch)
treec68894a0a51763082d0e982e8d25094bb5b7716b /signals.lua
parenta3d8c3ae16021881b0b39cfe473f16ae62f5f81e (diff)
downloadadvtrains-7c53f1692217ca0f6f10babe99054bf443171a16.tar.gz
advtrains-7c53f1692217ca0f6f10babe99054bf443171a16.tar.bz2
advtrains-7c53f1692217ca0f6f10babe99054bf443171a16.zip
remove all .blend and additional files that are not part of the mod from the repository
Diffstat (limited to 'signals.lua')
0 files changed, 0 insertions, 0 deletions
ef='#n129'>129
/*
Minetest
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#ifndef GUICHATCONSOLE_HEADER
#define GUICHATCONSOLE_HEADER

#include "irrlichttypes_extrabloated.h"
#include "chat.h"
#include "config.h"

class Client;

class GUIChatConsole : public gui::IGUIElement
{
public:
	GUIChatConsole(gui::IGUIEnvironment* env,
			gui::IGUIElement* parent,
			s32 id,
			ChatBackend* backend,
			Client* client);
	virtual ~GUIChatConsole();

	// Open the console (height = desired fraction of screen size)
	// This doesn't open immediately but initiates an animation.
	// You should call isOpenInhibited() before this.