Files
GabsPuNs-MinecraftConsoles/Minecraft.World/FilenameFilter.h
GabsPuNs 3d5357eeb3 More changes
Remove include stdafx.h from the .h files.
Replace malloc with mi_malloc and free with mi_free
Move MiniAudio and Zlib to Libs folder
2026-04-13 04:31:42 -04:00

11 lines
173 B
C++

#pragma once
using namespace std;
class File;
// 4J Jev, java lirary interface.
class FilenameFilter
{
public:
virtual bool accept(File *dir, const wstring& name) = 0;
};