TheKingsRace/Assets/Scripts/PlayerScripts/ItemScripts/WallRunItem.cs
wheatv3015 3e245ead44 Grappling Hook Alpha
-Impact based grappling hook with options for other types of implementation
-Wallrun tweaked so players can always jump off wall
2021-10-19 20:22:05 -05:00

16 lines
289 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WallRunItem : Item
{
public override void Equip(PlayerStats p){
p.HasWallrun = true;
}
public override void Unequip(PlayerStats p)
{
p.HasWallrun = false;
}
}