- using Godot;
- public class ThrowComponent : Component
- {
- public override void Ready()
- {
- }
- public virtual void StartThrow(Vector2 size, Vector2 start, float startHeight, float direction, float xSpeed,
- float ySpeed, float rotate)
- {
- }
- public virtual void StopThrow()
- {
- }
- }