abg

Animated background for X11
git clone git://git.laack.co/abg.git
Log | Files | Refs | README | LICENSE

vertex.hpp (228B)


      1 #pragma once
      2 
      3 #include <raylib.h>
      4 #include <string>
      5 
      6 class Vertex {
      7 public:
      8   Vertex(Vector2 position, float drawSize);
      9   Vector2 position;
     10   float drawSize;
     11   std::string toString();
     12   void render();
     13   bool visited = false;
     14 };