mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-08 15:56:04 +00:00
25 lines
575 B
Haxe
25 lines
575 B
Haxe
package io.newgrounds.components;
|
|
|
|
import io.newgrounds.objects.events.Result;
|
|
import io.newgrounds.NGLite;
|
|
|
|
class GatewayComponent extends Component {
|
|
|
|
public function new (core:NGLite){ super(core); }
|
|
|
|
public function getDatetime():Call<GetDateTimeResult> {
|
|
|
|
return new Call<GetDateTimeResult>(_core, "Gateway.getDatetime");
|
|
}
|
|
|
|
public function getVersion():Call<GetVersionResult> {
|
|
|
|
return new Call<GetVersionResult>(_core, "Gateway.getVersion");
|
|
}
|
|
|
|
public function ping():Call<PingResult> {
|
|
|
|
return new Call<PingResult>(_core, "Gateway.ping");
|
|
}
|
|
|
|
} |