diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/RequestAssetArgs.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Framework/RequestAssetArgs.cs b/OpenSim/Framework/RequestAssetArgs.cs new file mode 100644 index 0000000..0602421 --- /dev/null +++ b/OpenSim/Framework/RequestAssetArgs.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | using libsecondlife; | ||
3 | |||
4 | namespace OpenSim.Framework | ||
5 | { | ||
6 | public class RequestAssetArgs : EventArgs | ||
7 | { | ||
8 | public int ChannelType; | ||
9 | public float Priority; | ||
10 | public int SourceType; | ||
11 | public LLUUID TransferID; | ||
12 | } | ||
13 | } \ No newline at end of file | ||