mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
make this a class
This commit is contained in:
@@ -10,10 +10,12 @@ using libsecondlife;
|
||||
namespace OpenSim.Framework
|
||||
{
|
||||
[Serializable]
|
||||
public struct OSUUID: IComparable
|
||||
public class OSUUID: IComparable
|
||||
{
|
||||
public Guid UUID;
|
||||
|
||||
public OSUUID() {}
|
||||
|
||||
/* Constructors */
|
||||
public OSUUID(string s)
|
||||
{
|
||||
@@ -39,7 +41,7 @@ namespace OpenSim.Framework
|
||||
}
|
||||
|
||||
// out conversion
|
||||
public string ToString()
|
||||
public override string ToString()
|
||||
{
|
||||
return UUID.ToString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user