godot/modules/openxr/action_map/openxr_action_map.cpp

/**************************************************************************/
/*  openxr_action_map.cpp                                                 */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "openxr_action_map.h"

void OpenXRActionMap::_bind_methods() {}

void OpenXRActionMap::set_action_sets(Array p_action_sets) {}

Array OpenXRActionMap::get_action_sets() const {}

int OpenXRActionMap::get_action_set_count() const {}

Ref<OpenXRActionSet> OpenXRActionMap::find_action_set(String p_name) const {}

Ref<OpenXRActionSet> OpenXRActionMap::get_action_set(int p_idx) const {}

void OpenXRActionMap::add_action_set(Ref<OpenXRActionSet> p_action_set) {}

void OpenXRActionMap::remove_action_set(Ref<OpenXRActionSet> p_action_set) {}

void OpenXRActionMap::set_interaction_profiles(Array p_interaction_profiles) {}

Array OpenXRActionMap::get_interaction_profiles() const {}

int OpenXRActionMap::get_interaction_profile_count() const {}

Ref<OpenXRInteractionProfile> OpenXRActionMap::find_interaction_profile(String p_path) const {}

Ref<OpenXRInteractionProfile> OpenXRActionMap::get_interaction_profile(int p_idx) const {}

void OpenXRActionMap::add_interaction_profile(Ref<OpenXRInteractionProfile> p_interaction_profile) {}

void OpenXRActionMap::remove_interaction_profile(Ref<OpenXRInteractionProfile> p_interaction_profile) {}

void OpenXRActionMap::create_default_action_sets() {}

void OpenXRActionMap::create_editor_action_sets() {}

Ref<OpenXRAction> OpenXRActionMap::get_action(const String p_path) const {}

void OpenXRActionMap::remove_action(const String p_path, bool p_remove_interaction_profiles) {}

PackedStringArray OpenXRActionMap::get_top_level_paths(const Ref<OpenXRAction> p_action) {}

OpenXRActionMap::~OpenXRActionMap() {}