123456789101112131415161718192021222324252627 |
- #region File Description
- //-----------------------------------------------------------------------------
- // IAudioEmitter.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using Microsoft.Xna.Framework;
- #endregion
- namespace Audio3D
- {
- /// <summary>
- /// Interface used by the AudioManager to look up the position
- /// and velocity of entities that can emit 3D sounds.
- /// </summary>
- public interface IAudioEmitter
- {
- Vector3 Position { get; }
- Vector3 Forward { get; }
- Vector3 Up { get; }
- Vector3 Velocity { get; }
- }
- }
|