Newer
Older
HardPoint-Project-Abertay-University-Unity3D / Assets / Scripts / Systems / SaveSystem / PlayerInfoStruct.cs
@Rackday Rackday on 18 Aug 217 bytes Project Added
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public struct PlayerInfoStruct
{
    public int hp;
    public float speedGround;
    public float speedAir;
    public int currency;

}