mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-20 19:52:12 +00:00
16 lines
365 B
C++
16 lines
365 B
C++
// Luanti
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
#pragma once
|
|
|
|
#include "irrlichttypes_bloated.h"
|
|
#include "clientsimpleobject.h"
|
|
|
|
namespace irr::scene
|
|
{
|
|
class ISceneManager;
|
|
}
|
|
|
|
ClientSimpleObject* createSmokePuff(scene::ISceneManager *smgr,
|
|
ClientEnvironment *env, v3f pos, v2f size);
|