Class WolfCharm
Wolf Charm.
Inheritance
System.Object
WolfCharm
Namespace: TehGM.Wolfringo
Assembly: Wolfringo.Core.dll
Syntax
public class WolfCharm : IWolfEntity, IEquatable<WolfCharm>
Constructors
| Improve this Doc View SourceWolfCharm()
Creates a new instance of this WOLF entity.
Declaration
protected WolfCharm()
Properties
| Improve this Doc View SourceDescriptionPhraseID
?
Declaration
public uint? DescriptionPhraseID { get; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.UInt32> |
ID
Charm ID.
Declaration
public uint ID { get; }
Property Value
| Type | Description |
|---|---|
| System.UInt32 |
ImageURL
URL of charm image.
Declaration
public string ImageURL { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Name
Code name of the charm.
Declaration
public string Name { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
ProductID
Product ID of this charm.
Declaration
public uint? ProductID { get; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.UInt32> |
TranslatedDescriptions
Charm's translated descriptions.
Declaration
public IReadOnlyDictionary<WolfLanguage, string> TranslatedDescriptions { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IReadOnlyDictionary<WolfLanguage, System.String> |
TranslatedNames
Charm's translated names.
Declaration
public IReadOnlyDictionary<WolfLanguage, string> TranslatedNames { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IReadOnlyDictionary<WolfLanguage, System.String> |
Weight
Charm weight. (?)
Declaration
public int Weight { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Methods
| Improve this Doc View SourceEquals(Object)
Wolf Charm.
Declaration
public override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | obj |
Returns
| Type | Description |
|---|---|
| System.Boolean |
Overrides
System.Object.Equals(System.Object)
|
Improve this Doc
View Source
Equals(WolfCharm)
Wolf Charm.
Declaration
public bool Equals(WolfCharm other)
Parameters
| Type | Name | Description |
|---|---|---|
| WolfCharm | other |
Returns
| Type | Description |
|---|---|
| System.Boolean |
GetHashCode()
Wolf Charm.
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| System.Int32 |
Overrides
System.Object.GetHashCode()
Operators
| Improve this Doc View SourceEquality(WolfCharm, WolfCharm)
Wolf Charm.
Declaration
public static bool operator ==(WolfCharm left, WolfCharm right)
Parameters
| Type | Name | Description |
|---|---|---|
| WolfCharm | left | |
| WolfCharm | right |
Returns
| Type | Description |
|---|---|
| System.Boolean |
Inequality(WolfCharm, WolfCharm)
Wolf Charm.
Declaration
public static bool operator !=(WolfCharm left, WolfCharm right)
Parameters
| Type | Name | Description |
|---|---|---|
| WolfCharm | left | |
| WolfCharm | right |
Returns
| Type | Description |
|---|---|
| System.Boolean |
Implements
System.IEquatable<T>