LibraryViewer

This commit is contained in:
IlyaShurupov 2023-11-28 23:22:04 +03:00 committed by Ilya Shurupov
parent f6ba86aff8
commit dd71eba0ec
24 changed files with 226111 additions and 36 deletions

View file

@ -0,0 +1,31 @@
#pragma once
#include "Window.hpp"
namespace tp {
extern ModuleManifest gModuleLibraryViewer;
}
class Track {
public:
Track() = default;
public:
tp::String mName = "undef";
tp::String mArtist = "undef";
};
class Library {
public:
Library() = default;
public:
bool loadJson(const tp::String& path);
public:
tp::Buffer<Track> mTraks;
};
class LibraryViewverGui {};
void runApp();