mirror of
https://github.com/DanielLMcGuire/LCE-SDK.git
synced 2026-06-11 03:21:54 +00:00
9 lines
93 B
C++
9 lines
93 B
C++
#pragma once
|
|
|
|
class File;
|
|
|
|
class FileFilter
|
|
{
|
|
public:
|
|
virtual bool accept(File *dir) = 0;
|
|
}; |