mirror of
https://github.com/Relintai/voxelman.git
synced 2025-01-14 15:11:10 +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);
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|