Luanti 5.16.0-dev
 
Loading...
Searching...
No Matches
s_sscsm.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 Luanti authors
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4
5#pragma once
6
7#include "cpp_api/s_base.h"
8
9class ScriptApiSSCSM : virtual public ScriptApiBase
10{
11public:
12 void load_mods(const std::vector<std::pair<std::string, std::string>> &mods);
13
14 void environment_step(float dtime);
15};
Definition s_base.h:66
Definition s_sscsm.h:10
void load_mods(const std::vector< std::pair< std::string, std::string > > &mods)
Definition s_sscsm.cpp:10
void environment_step(float dtime)
Definition s_sscsm.cpp:19