aboutsummaryrefslogtreecommitdiff
path: root/src/client/render/factory.cpp
diff options
context:
space:
mode:
authorDS <vorunbekannt75@web.de>2020-12-18 19:38:07 +0100
committerGitHub <noreply@github.com>2020-12-18 19:38:07 +0100
commit6f8a1c99d5a30de0021c2c03bb5f79eb8281f868 (patch)
tree8645cdb1c383cfeebeb92157d8d38c989ea92bdc /src/client/render/factory.cpp
parente6380565236d6d963acf75538f1f8fec807190cc (diff)
downloadminetest-6f8a1c99d5a30de0021c2c03bb5f79eb8281f868.tar.gz
minetest-6f8a1c99d5a30de0021c2c03bb5f79eb8281f868.tar.bz2
minetest-6f8a1c99d5a30de0021c2c03bb5f79eb8281f868.zip
Documentation for highest formspec_version[] and changelog (#10592)
Diffstat (limited to 'src/client/render/factory.cpp')
0 files changed, 0 insertions, 0 deletions
>130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
/*
Minetest-c55
Copyright (C) 2010-2011 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 General Public License as published by
the Free Software Foundation; either version 2 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 General Public License for more details.

You should have received a copy of the GNU 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 STATICOBJECT_HEADER
#define STATICOBJECT_HEADER

#include "common_irrlicht.h"
#include <string>
#include <sstream>
#include "utility.h"

struct StaticObject
{
	u8 type;
	v3f pos;
	std::string data;

	StaticObject():
		type(0),
		pos(0,0,0)
	{
	}