20 lines
288 B
C++
20 lines
288 B
C++
//
|
|
// Created by versustune on 13.06.20.
|
|
//
|
|
|
|
#ifndef VENO_SIDEBAR_H
|
|
#define VENO_SIDEBAR_H
|
|
|
|
#include "JuceHeader.h"
|
|
#include "../../Components/BaseComponent.h"
|
|
|
|
class Sidebar : public BaseComponent
|
|
{
|
|
private:
|
|
public:
|
|
Sidebar ();
|
|
~Sidebar ();
|
|
protected:
|
|
};
|
|
#endif //VENO_SIDEBAR_H
|