mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/GabsPuNs-MinecraftConsoles.git
synced 2026-06-05 10:06:48 +00:00
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
11 lines
173 B
C++
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;
|
|
}; |