updated godot-cpp

This commit is contained in:
Nyx
2025-05-06 23:52:04 -06:00
commit 319795c4c9
31 changed files with 1769 additions and 0 deletions

26
src/steam_audio.h Normal file
View File

@@ -0,0 +1,26 @@
//
// Created by bryce on 5/7/2025.
//
#pragma once
#include <godot_cpp/godot.hpp>
#include<godot_cpp/core/class_db.hpp>
#include <godot_cpp/classes/ref.hpp>
#include<godot_cpp/variant/utility_functions.hpp>
#include<phonon.h>
using namespace godot;
class SteamAudio : RefCounted
{
GDCLASS( SteamAudio,RefCounted );
private:
IPLContext context = nullptr;
protected:
static void _bind_methods();
public:
SteamAudio();
~SteamAudio();
bool initialize();
};