mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Move Roomtext struct to Map.h
This is a more appropriate place for it, because it's never used in Otherlevel.cpp.
This commit is contained in:
@@ -13,6 +13,12 @@
|
|||||||
#include "Music.h"
|
#include "Music.h"
|
||||||
#include "editor.h"
|
#include "editor.h"
|
||||||
|
|
||||||
|
struct Roomtext
|
||||||
|
{
|
||||||
|
int x, y;
|
||||||
|
std::string text;
|
||||||
|
};
|
||||||
|
|
||||||
class mapclass
|
class mapclass
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -7,12 +7,6 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
struct Roomtext
|
|
||||||
{
|
|
||||||
int x, y;
|
|
||||||
std::string text;
|
|
||||||
};
|
|
||||||
|
|
||||||
class otherlevelclass
|
class otherlevelclass
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|||||||
Reference in New Issue
Block a user