diff options
Diffstat (limited to 'Source/Asura.Framework/audio/source.lua')
-rw-r--r-- | Source/Asura.Framework/audio/source.lua | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/Source/Asura.Framework/audio/source.lua b/Source/Asura.Framework/audio/source.lua deleted file mode 100644 index ccbc946..0000000 --- a/Source/Asura.Framework/audio/source.lua +++ /dev/null @@ -1,22 +0,0 @@ --- Audio Source -AsuraEngine.Source = AsuraEngine.Component.Sub("SoundPlayer") - -local Source = AsuraEngine.Source - -function Source.Ctor(self) - self.mSound = nil -end - -function Source.SetSound(sound) - self.mSound = sound -end - -function Source.GetSource() - return self.mSound -end - -function Source.OnUpdate(dt) - -end - -return Source
\ No newline at end of file |