diff options
Diffstat (limited to 'GameCode/PlayerSkin.cs')
-rw-r--r-- | GameCode/PlayerSkin.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/GameCode/PlayerSkin.cs b/GameCode/PlayerSkin.cs new file mode 100644 index 0000000..446a0cd --- /dev/null +++ b/GameCode/PlayerSkin.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class PlayerSkin : MonoBehaviour +{ + public Color color; + + public Color backgroundColor; + + public Color winText; + + public Color particleEffect; +} |