1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-06 10:16:28 +00:00
Funkin/source/io/newgrounds/components/EventComponent.hx
2020-10-31 20:42:14 -07:00

16 lines
451 B
Haxe

package io.newgrounds.components;
import io.newgrounds.objects.events.Result.LogEventResult;
import io.newgrounds.NGLite;
class EventComponent extends Component {
public function new (core:NGLite){ super(core); }
public function logEvent(eventName:String):Call<LogEventResult> {
return new Call<LogEventResult>(_core, "Event.logEvent")
.addComponentParameter("event_name", eventName)
.addComponentParameter("host", _core.host);
}
}