mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 11:29:01 +02:00
10 lines
219 B
C++
10 lines
219 B
C++
#pragma once
|
|
|
|
#include "DLCFile.h"
|
|
#include "..\GameRules\LevelGenerationOptions.h"
|
|
|
|
class DLCGameRules : public DLCFile
|
|
{
|
|
public:
|
|
DLCGameRules(DLCManager::EDLCType type, const wstring &path) : DLCFile(type,path) {}
|
|
}; |