[Fix] Conflicts
This commit is contained in:
@@ -6,18 +6,18 @@ namespace YachtDice.Dice
|
||||
/// </summary>
|
||||
public class DiceInstance : IDice
|
||||
{
|
||||
public DiceDefinitionSO Definition { get; }
|
||||
public DiceDefinition Definition { get; }
|
||||
public int Value { get; set; }
|
||||
public bool IsLocked { get; set; }
|
||||
|
||||
public DiceInstance(DiceDefinitionSO definition)
|
||||
public DiceInstance(DiceDefinition definition)
|
||||
{
|
||||
Definition = definition;
|
||||
Value = 0;
|
||||
IsLocked = false;
|
||||
}
|
||||
|
||||
public DiceInstance(DiceDefinitionSO definition, int initialValue)
|
||||
public DiceInstance(DiceDefinition definition, int initialValue)
|
||||
{
|
||||
Definition = definition;
|
||||
Value = initialValue;
|
||||
|
||||
Reference in New Issue
Block a user