Fixing stuff
parent
488258cf4c
commit
4957a8e75c
|
@ -0,0 +1,23 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
using libsecondlife;
|
||||||
|
|
||||||
|
namespace OpenSim.Framework.Types
|
||||||
|
{
|
||||||
|
public class AssetStorage
|
||||||
|
{
|
||||||
|
|
||||||
|
public AssetStorage() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public AssetStorage(LLUUID assetUUID) {
|
||||||
|
UUID=assetUUID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public byte[] Data;
|
||||||
|
public sbyte Type;
|
||||||
|
public string Name;
|
||||||
|
public LLUUID UUID;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue