Skip to content

Commit

Permalink
remove unused exports
Browse files Browse the repository at this point in the history
  • Loading branch information
gok99 committed Oct 14, 2023
1 parent a3a55c0 commit d81e9d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/bundles/game/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,24 +77,24 @@ const scene = () => mandatory(context.moduleContexts.game.state.scene, 'No scene
// =============================================================================

/** @hidden */
export function get_obj(
function get_obj(
obj: GameObject,
): RawGameObject | RawInputObject | RawContainer {
return obj.object!;
}

/** @hidden */
export function get_game_obj(obj: GameObject): RawGameObject | RawContainer {
function get_game_obj(obj: GameObject): RawGameObject | RawContainer {
return obj.object as RawGameObject | RawContainer;
}

/** @hidden */
export function get_input_obj(obj: GameObject): RawInputObject {
function get_input_obj(obj: GameObject): RawInputObject {
return obj.object as RawInputObject;
}

/** @hidden */
export function get_container(obj: GameObject): RawContainer {
function get_container(obj: GameObject): RawContainer {
return obj.object as RawContainer;
}

Expand Down

0 comments on commit d81e9d6

Please sign in to comment.