mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
15 lines
No EOL
410 B
C#
15 lines
No EOL
410 B
C#
namespace Hacknet
|
|
{
|
|
public struct PlayerBonuses
|
|
{
|
|
public float max_velocity;
|
|
public float acceleration;
|
|
public float dash_regen_rate;
|
|
public float max_dash_range;
|
|
public float gravity_factor;
|
|
public float jump_height_factor;
|
|
public float dash_velocity_retain_factor;
|
|
public int control_invert;
|
|
public int screen_invert;
|
|
}
|
|
} |