aboutsummaryrefslogtreecommitdiff
path: root/textures/base/pack/no_screenshot.png
Commit message (Expand)AuthorAge
* Main menu, lua_api.txt: Fix mod/texture pack screenshot size issuesWuzzy2016-07-27
* Compress textures and fontsMaksim Gamarnik2015-10-15
* Use frame instead of words 'no screenshot available'rubenwardy2015-06-24
* Replace C++ mainmenu by formspec powered onesapier2013-07-02
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 CLIENTSIMPLEOBJECT_HEADER #define CLIENTSIMPLEOBJECT_HEADER #include "irrlichttypes_bloated.h" class ClientEnvironment; class ClientSimpleObject { protected: public: bool m_to_be_removed = false; ClientSimpleObject() {} virtual ~ClientSimpleObject() {} virtual void step(float dtime) {} }; #endif