Files
libremetaverse/old/libsecondlife-cs/AssetSystem/AssetImage.cs
John Hurliman 2cf03f4257 Moving the trunk to the directory "old"
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@276 52acb1d6-8a22-11de-b505-999d5b087335
2006-10-14 04:10:33 +00:00

28 lines
420 B
C#

using System;
using libsecondlife;
namespace libsecondlife.AssetSystem
{
/// <summary>
/// Summary description for AssetNotecard.
/// </summary>
public class AssetImage : Asset
{
public byte[] J2CData
{
get
{
return base.AssetData;
}
}
public AssetImage(LLUUID assetID, byte[] assetData) : base( assetID, Asset.ASSET_TYPE_IMAGE, false, assetData )
{
}
}
}