mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
s_env.{cpp, h} cleanups
* Replace string by-val passing with const reference * Fix code style * Remove redundant `int table` definition and indentation level
This commit is contained in:
parent
d494733839
commit
725cb4eb07
2 changed files with 65 additions and 66 deletions
|
@ -26,7 +26,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
class ServerEnvironment;
|
||||
struct ScriptCallbackState;
|
||||
|
||||
class ScriptApiEnv : virtual public ScriptApiBase {
|
||||
class ScriptApiEnv : virtual public ScriptApiBase
|
||||
{
|
||||
public:
|
||||
// Called on environment step
|
||||
void environment_Step(float dtime);
|
||||
|
@ -35,7 +36,7 @@ public:
|
|||
void environment_OnGenerated(v3s16 minp, v3s16 maxp, u32 blockseed);
|
||||
|
||||
// Called on player event
|
||||
void player_event(ServerActiveObject *player, std::string type);
|
||||
void player_event(ServerActiveObject *player, const std::string &type);
|
||||
|
||||
// Called after emerge of a block queued from core.emerge_area()
|
||||
void on_emerge_area_completion(v3s16 blockpos, int action,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue