reVeno/Source/Veno/Utils.h

22 lines
361 B
C
Raw Normal View History

2020-06-13 10:56:20 +02:00
//
// Created by versustune on 08.06.20.
//
#ifndef VENO_UTILS_H
#define VENO_UTILS_H
#include "JuceHeader.h"
namespace VeNo
{
class Utils
{
2020-06-13 10:56:20 +02:00
public:
Utils () = default;
~Utils () = default;
static int nextPowerOfTwo (float value);
static float setFontSize (float size, Graphics& g);
2020-06-13 10:56:20 +02:00
};
}
#endif //VENO_UTILS_H