Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
13 lines
194 B
C++
13 lines
194 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "stdafx.h"
|
|
|
|
class File;
|
|
|
|
// 4J Jev, java lirary interface.
|
|
class FilenameFilter
|
|
{
|
|
public:
|
|
virtual bool accept(File *dir, const wstring& name) = 0;
|
|
}; |