mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-08 15:56:04 +00:00
16 lines
451 B
Haxe
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);
|
|
}
|
|
} |