mirror of
https://github.com/Relintai/world_generator.git
synced 2024-11-14 10:17:19 +01:00
20 lines
407 B
C++
20 lines
407 B
C++
#pragma once
|
|
#include <System/System.h>
|
|
#include "DungeonRoom.h"
|
|
#include "UnityEngine.h"
|
|
|
|
using namespace System;
|
|
namespace BS {
|
|
namespace Levels {
|
|
namespace Generator {
|
|
class DungeonEndRoom : public virtual DungeonRoom, public virtual Object
|
|
{
|
|
public:
|
|
DungeonEndRoom(int x, int y, int width, int height);
|
|
public:
|
|
virtual void WriteRoom(ArrayND<char, 2>* dungeon);
|
|
};
|
|
}
|
|
}
|
|
}
|