### YamlMime:ManagedReference
items:
- uid: TinyLife.Skills.Skill
commentId: T:TinyLife.Skills.Skill
id: Skill
parent: TinyLife.Skills
children:
- TinyLife.Skills.Skill.#ctor(TinyLife.Skills.SkillType)
- TinyLife.Skills.Skill.Gain(TinyLife.Objects.Person,System.Single)
- TinyLife.Skills.Skill.GetRequiredPointsToNextLevel
- TinyLife.Skills.Skill.Level
- TinyLife.Skills.Skill.LevelPercentage
- TinyLife.Skills.Skill.PointPercentage
- TinyLife.Skills.Skill.PointsToNextLevel
- TinyLife.Skills.Skill.Type
langs:
- csharp
- vb
name: Skill
nameWithType: Skill
fullName: TinyLife.Skills.Skill
type: Class
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Skill
path: Skills/Skill.cs
startLine: 23
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nA skill is an ability that a can have which influences their behavior in some way.\nSkill instances are created from their corresponding .\n"
example: []
syntax:
content: >-
[DataContract]
public class Skill
content.vb: >-
Public Class Skill
inheritance:
- System.Object
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods:
- TinyLife.Skills.Skill.TinyLife.Utilities.Extensions.JsonCopy``1
attributes:
- type: System.Runtime.Serialization.DataContractAttribute
ctor: System.Runtime.Serialization.DataContractAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- class
modifiers.vb:
- Public
- Class
- uid: TinyLife.Skills.Skill.Type
commentId: F:TinyLife.Skills.Skill.Type
id: Type
parent: TinyLife.Skills.Skill
langs:
- csharp
- vb
name: Type
nameWithType: Skill.Type
fullName: TinyLife.Skills.Skill.Type
type: Field
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Type
path: Skills/Skill.cs
startLine: 30
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe underlying that this skill instance originates from\n"
example: []
syntax:
content: >-
[DataMember]
public readonly SkillType Type
return:
type: TinyLife.Skills.SkillType
content.vb: >-
Public ReadOnly Type As SkillType
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- readonly
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.Skills.Skill.PointsToNextLevel
commentId: P:TinyLife.Skills.Skill.PointsToNextLevel
id: PointsToNextLevel
parent: TinyLife.Skills.Skill
langs:
- csharp
- vb
name: PointsToNextLevel
nameWithType: Skill.PointsToNextLevel
fullName: TinyLife.Skills.Skill.PointsToNextLevel
type: Property
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PointsToNextLevel
path: Skills/Skill.cs
startLine: 35
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe amount of skill points that are required until the next is reached.\nTo modify this value, use or .\n"
example: []
syntax:
content: >-
[DataMember]
public float PointsToNextLevel { get; }
parameters: []
return:
type: System.Single
content.vb: >-
Public ReadOnly Property PointsToNextLevel As Single
overload: TinyLife.Skills.Skill.PointsToNextLevel*
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- get
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.Skills.Skill.Level
commentId: P:TinyLife.Skills.Skill.Level
id: Level
parent: TinyLife.Skills.Skill
langs:
- csharp
- vb
name: Level
nameWithType: Skill.Level
fullName: TinyLife.Skills.Skill.Level
type: Property
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Level
path: Skills/Skill.cs
startLine: 41
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe current level of this skill. Note that this value never goes beyond .\nTo modify this value, use or .\n"
example: []
syntax:
content: >-
[DataMember]
public int Level { get; }
parameters: []
return:
type: System.Int32
content.vb: >-
Public ReadOnly Property Level As Integer
overload: TinyLife.Skills.Skill.Level*
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
modifiers.csharp:
- public
- get
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.Skills.Skill.PointPercentage
commentId: P:TinyLife.Skills.Skill.PointPercentage
id: PointPercentage
parent: TinyLife.Skills.Skill
langs:
- csharp
- vb
name: PointPercentage
nameWithType: Skill.PointPercentage
fullName: TinyLife.Skills.Skill.PointPercentage
type: Property
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: PointPercentage
path: Skills/Skill.cs
startLine: 47
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe percentage of out of the required .\nThis value is always between 0 and 1.\n"
example: []
syntax:
content: public float PointPercentage { get; }
parameters: []
return:
type: System.Single
content.vb: Public ReadOnly Property PointPercentage As Single
overload: TinyLife.Skills.Skill.PointPercentage*
modifiers.csharp:
- public
- get
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.Skills.Skill.LevelPercentage
commentId: P:TinyLife.Skills.Skill.LevelPercentage
id: LevelPercentage
parent: TinyLife.Skills.Skill
langs:
- csharp
- vb
name: LevelPercentage
nameWithType: Skill.LevelPercentage
fullName: TinyLife.Skills.Skill.LevelPercentage
type: Property
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: LevelPercentage
path: Skills/Skill.cs
startLine: 53
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nThe percentage of out of the total that this skill can get to.\nNote that this value does not take into account the person's age or their .\nThis value is always between 0 and 1.\n"
example: []
syntax:
content: public float LevelPercentage { get; }
parameters: []
return:
type: System.Single
content.vb: Public ReadOnly Property LevelPercentage As Single
overload: TinyLife.Skills.Skill.LevelPercentage*
modifiers.csharp:
- public
- get
modifiers.vb:
- Public
- ReadOnly
- uid: TinyLife.Skills.Skill.#ctor(TinyLife.Skills.SkillType)
commentId: M:TinyLife.Skills.Skill.#ctor(TinyLife.Skills.SkillType)
id: '#ctor(TinyLife.Skills.SkillType)'
parent: TinyLife.Skills.Skill
langs:
- csharp
- vb
name: Skill(SkillType)
nameWithType: Skill.Skill(SkillType)
fullName: TinyLife.Skills.Skill.Skill(TinyLife.Skills.SkillType)
type: Constructor
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: Skills/Skill.cs
startLine: 59
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nCreates a new skill instance from the given .\n"
example: []
syntax:
content: public Skill(SkillType type)
parameters:
- id: type
type: TinyLife.Skills.SkillType
description: The type of skill to construct
content.vb: Public Sub New(type As SkillType)
overload: TinyLife.Skills.Skill.#ctor*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.Skills.Skill.Gain(TinyLife.Objects.Person,System.Single)
commentId: M:TinyLife.Skills.Skill.Gain(TinyLife.Objects.Person,System.Single)
id: Gain(TinyLife.Objects.Person,System.Single)
parent: TinyLife.Skills.Skill
langs:
- csharp
- vb
name: Gain(Person, Single)
nameWithType: Skill.Gain(Person, Single)
fullName: TinyLife.Skills.Skill.Gain(TinyLife.Objects.Person, System.Single)
type: Method
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Gain
path: Skills/Skill.cs
startLine: 69
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nCauses the given person to gain a certain amount of points of this skill.\nNote that is preferred to this method.\n"
example: []
syntax:
content: public void Gain(Person person, float amount)
parameters:
- id: person
type: TinyLife.Objects.Person
description: The person that has this skill
- id: amount
type: System.Single
description: The amount to gain the skill by
content.vb: Public Sub Gain(person As Person, amount As Single)
overload: TinyLife.Skills.Skill.Gain*
modifiers.csharp:
- public
modifiers.vb:
- Public
- uid: TinyLife.Skills.Skill.GetRequiredPointsToNextLevel
commentId: M:TinyLife.Skills.Skill.GetRequiredPointsToNextLevel
id: GetRequiredPointsToNextLevel
parent: TinyLife.Skills.Skill
langs:
- csharp
- vb
name: GetRequiredPointsToNextLevel()
nameWithType: Skill.GetRequiredPointsToNextLevel()
fullName: TinyLife.Skills.Skill.GetRequiredPointsToNextLevel()
type: Method
source:
remote:
path: TinyLife/Skills/Skill.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetRequiredPointsToNextLevel
path: Skills/Skill.cs
startLine: 96
assemblies:
- Tiny Life
namespace: TinyLife.Skills
summary: "\nReturns the amount of skill points that is required to reach the next level.\nThis value is depenedent on the current , meaning higher skill levels are harder to reach.\n"
example: []
syntax:
content: public int GetRequiredPointsToNextLevel()
return:
type: System.Int32
description: The points required for the next level
content.vb: Public Function GetRequiredPointsToNextLevel As Integer
overload: TinyLife.Skills.Skill.GetRequiredPointsToNextLevel*
modifiers.csharp:
- public
modifiers.vb:
- Public
references:
- uid: TinyLife.Objects.Person
commentId: T:TinyLife.Objects.Person
parent: TinyLife.Objects
name: Person
nameWithType: Person
fullName: TinyLife.Objects.Person
- uid: TinyLife.Skills.SkillType
commentId: T:TinyLife.Skills.SkillType
parent: TinyLife.Skills
name: SkillType
nameWithType: SkillType
fullName: TinyLife.Skills.SkillType
- uid: TinyLife.Skills
commentId: N:TinyLife.Skills
name: TinyLife.Skills
nameWithType: TinyLife.Skills
fullName: TinyLife.Skills
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
name: Object
nameWithType: Object
fullName: System.Object
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
name: Equals(Object)
nameWithType: Object.Equals(Object)
fullName: System.Object.Equals(System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: Equals(Object, Object)
nameWithType: Object.Equals(Object, Object)
fullName: System.Object.Equals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
nameWithType: Object.Equals
fullName: System.Object.Equals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
name: GetHashCode()
nameWithType: Object.GetHashCode()
fullName: System.Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
nameWithType: Object.GetHashCode
fullName: System.Object.GetHashCode
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
name: GetType()
nameWithType: Object.GetType()
fullName: System.Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.GetType
name: GetType
nameWithType: Object.GetType
fullName: System.Object.GetType
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
name: MemberwiseClone()
nameWithType: Object.MemberwiseClone()
fullName: System.Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
nameWithType: Object.MemberwiseClone
fullName: System.Object.MemberwiseClone
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
name: ReferenceEquals(Object, Object)
nameWithType: Object.ReferenceEquals(Object, Object)
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
nameWithType: Object.ReferenceEquals
fullName: System.Object.ReferenceEquals
isExternal: true
- name: (
nameWithType: (
fullName: (
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: ', '
nameWithType: ', '
fullName: ', '
- uid: System.Object
name: Object
nameWithType: Object
fullName: System.Object
isExternal: true
- name: )
nameWithType: )
fullName: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
name: ToString()
nameWithType: Object.ToString()
fullName: System.Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: System.Object.ToString
name: ToString
nameWithType: Object.ToString
fullName: System.Object.ToString
isExternal: true
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Skills.Skill.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy()
nameWithType: Extensions.JsonCopy()
fullName: TinyLife.Utilities.Extensions.JsonCopy()
nameWithType.vb: Extensions.JsonCopy(Of Skill)()
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Skills.Skill)()
name.vb: JsonCopy(Of Skill)()
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy
nameWithType: Extensions.JsonCopy
fullName: TinyLife.Utilities.Extensions.JsonCopy
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1
name: JsonCopy(Of Skill)
nameWithType: Extensions.JsonCopy(Of Skill)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Skills.Skill)
- name: (
nameWithType: (
fullName: (
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
- uid: System
commentId: N:System
isExternal: true
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy(T)
nameWithType: Extensions.JsonCopy(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
nameWithType: Extensions.JsonCopy
fullName: TinyLife.Utilities.Extensions.JsonCopy
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy(Of T)
nameWithType: Extensions.JsonCopy(Of T)
fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name: (
nameWithType: (
fullName: (
- name: T
nameWithType: T
fullName: T
- name: )
nameWithType: )
fullName: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
- uid: TinyLife.Skills.Skill.Level
commentId: P:TinyLife.Skills.Skill.Level
isExternal: true
- uid: TinyLife.Skills.Skill.Gain(TinyLife.Objects.Person,System.Single)
commentId: M:TinyLife.Skills.Skill.Gain(TinyLife.Objects.Person,System.Single)
isExternal: true
- uid: TinyLife.Objects.Person.GainSkill(TinyLife.Skills.SkillType,System.Single,TinyLife.Actions.ActionInfo,System.Single)
commentId: M:TinyLife.Objects.Person.GainSkill(TinyLife.Skills.SkillType,System.Single,TinyLife.Actions.ActionInfo,System.Single)
isExternal: true
- uid: TinyLife.Skills.Skill.PointsToNextLevel*
commentId: Overload:TinyLife.Skills.Skill.PointsToNextLevel
name: PointsToNextLevel
nameWithType: Skill.PointsToNextLevel
fullName: TinyLife.Skills.Skill.PointsToNextLevel
- uid: System.Single
commentId: T:System.Single
parent: System
isExternal: true
name: Single
nameWithType: Single
fullName: System.Single
- uid: TinyLife.Skills.SkillType.GetMaxLevel(TinyLife.Objects.AgeGroup)
commentId: M:TinyLife.Skills.SkillType.GetMaxLevel(TinyLife.Objects.AgeGroup)
isExternal: true
- uid: TinyLife.Skills.Skill.Level*
commentId: Overload:TinyLife.Skills.Skill.Level
name: Level
nameWithType: Skill.Level
fullName: TinyLife.Skills.Skill.Level
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
name: Int32
nameWithType: Int32
fullName: System.Int32
- uid: TinyLife.Skills.Skill.PointsToNextLevel
commentId: P:TinyLife.Skills.Skill.PointsToNextLevel
isExternal: true
- uid: TinyLife.Skills.Skill.GetRequiredPointsToNextLevel
commentId: M:TinyLife.Skills.Skill.GetRequiredPointsToNextLevel
isExternal: true
- uid: TinyLife.Skills.Skill.PointPercentage*
commentId: Overload:TinyLife.Skills.Skill.PointPercentage
name: PointPercentage
nameWithType: Skill.PointPercentage
fullName: TinyLife.Skills.Skill.PointPercentage
- uid: TinyLife.Skills.SkillType.MaxLevel
commentId: F:TinyLife.Skills.SkillType.MaxLevel
isExternal: true
- uid: TinyLife.Skills.SkillType.ChildhoodMaxLevel
commentId: P:TinyLife.Skills.SkillType.ChildhoodMaxLevel
isExternal: true
- uid: TinyLife.Skills.Skill.LevelPercentage*
commentId: Overload:TinyLife.Skills.Skill.LevelPercentage
name: LevelPercentage
nameWithType: Skill.LevelPercentage
fullName: TinyLife.Skills.Skill.LevelPercentage
- uid: TinyLife.Skills.Skill.#ctor*
commentId: Overload:TinyLife.Skills.Skill.#ctor
name: Skill
nameWithType: Skill.Skill
fullName: TinyLife.Skills.Skill.Skill
- uid: TinyLife.Skills.Skill.Gain*
commentId: Overload:TinyLife.Skills.Skill.Gain
name: Gain
nameWithType: Skill.Gain
fullName: TinyLife.Skills.Skill.Gain
- uid: TinyLife.Skills.Skill.GetRequiredPointsToNextLevel*
commentId: Overload:TinyLife.Skills.Skill.GetRequiredPointsToNextLevel
name: GetRequiredPointsToNextLevel
nameWithType: Skill.GetRequiredPointsToNextLevel
fullName: TinyLife.Skills.Skill.GetRequiredPointsToNextLevel