15 lines
354 B
C#
15 lines
354 B
C#
using Godot;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Godot.Collections;
|
|
|
|
using Rokojori.Extensions;
|
|
namespace Rokojori
|
|
{
|
|
[Tool]
|
|
[GlobalClass, Icon("res://addons/rokojori_action_library/Icons/CCJump.svg")]
|
|
public abstract partial class JumpStrength:Resource
|
|
{
|
|
public abstract float GetJumpStrength( Jump jump );
|
|
}
|
|
} |