mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
17 lines
345 B
C#
17 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.Audio
|
|
{
|
|
internal class QSBJetpackThrusterAudio : QSBThrusterAudio
|
|
{
|
|
public OWAudioSource _underwaterSource;
|
|
public OWAudioSource _oxygenSource;
|
|
public OWAudioSource _boostSource;
|
|
}
|
|
}
|