summaryrefslogtreecommitdiff
path: root/2026/games_submissions/just__jane/include/cut.hpp
blob: 0804e865afb8d8c20f5f38347120b285a22b39ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "raylib.h"

class Cut {
private:
  Vector2 start_;
  Vector2 end_;
  float current_step_;

  Sound slash_;

public:
  Cut(Vector2 start, Vector2 end);
  void Draw();
  void Update();
  bool its_joever = false;
};