Skip to content
This repository has been archived by the owner on Oct 30, 2019. It is now read-only.

Commit

Permalink
Merge pull request #170 from 3vi1/monogame-sdl2
Browse files Browse the repository at this point in the history
[FNA] FNA Code Style: Tabbing, etc. - Media Dir
  • Loading branch information
flibitijibibo committed Mar 21, 2014
2 parents e9917f7 + 7084195 commit 741baf3
Show file tree
Hide file tree
Showing 10 changed files with 504 additions and 439 deletions.
30 changes: 13 additions & 17 deletions MonoGame.Framework/Media/MediaLibrary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,48 +15,44 @@ namespace Microsoft.Xna.Framework.Media
{
public class MediaLibrary : IDisposable
{
private PlaylistCollection _playLists = null;
private PlaylistCollection PlayLists
{
get { return _playLists; }
set { _playLists = value; }
private PlaylistCollection PlayLists {
get;
set;
}

public MediaLibrary ()
public MediaLibrary()
{
}
public MediaLibrary (MediaSource mediaSource)

public MediaLibrary(MediaSource mediaSource)
{
}

public void Dispose()
{
}

/*

public void SavePicture (string name, byte[] imageBuffer)
{
//only is relivant on mobile devices...
// Only is relivant on mobile devices, should throw error on desktops.
throw new NotSupportedException ();
}

public void SavePicture (string name, Stream source)
{
//only is relivant on mobile devices...
// Only is relivant on mobile devices, should throw error on desktops.
throw new NotSupportedException ();
}
*/

public SongCollection Songs

public SongCollection Songs
{
get
{
return new SongCollection();
}
}



}
}

0 comments on commit 741baf3

Please sign in to comment.