blob: 5e3d0db7c100f12d3a47ed2414cfb5c57fa399ca (
plain)
1
2
3
4
5
6
7
|
using UnityEngine;
[CreateAssetMenu(fileName = "Data", menuName = "SimpleSiege/Equippable Mutation", order = 1)]
public class EquippableMutation : Equippable
{
public float scoreMultiplyerOnWin = 1.2f;
}
|