F4MP/tiltedcode/Code/server/Scripting/Services/CalendarService_Bindings.cpp
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

13 lines
508 B
C++

#include "GameServer.h"
namespace Script
{
void CreateCalendarServiceBindings(sol::state_view aState)
{
auto calendarType =
aState.new_usertype<CalendarService>("CalendarService", sol::meta_function::construct, sol::no_constructor);
calendarType["get"] = []() -> CalendarService& { return GameServer::Get()->GetWorld().GetCalendarService(); };
calendarType["GetTimeScale"] = []() { return GameServer::Get()->GetWorld().GetCalendarService().GetTimeScale(); };
}
} // namespace Script