1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
ctrorganizer/include/browse_entry.h
2024-01-03 15:59:26 -05:00

7 lines
No EOL
90 B
C++

#pragma once
class BrowseEntry {
public:
std::string name;
bool isDirectory = false;
};