1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2025-01-09 10:29:45 +01: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:
Misa 2020-07-06 12:37:04 -07:00 committed by Ethan Lee
parent 5e8ca20d02
commit 420bc38dff
2 changed files with 6 additions and 6 deletions

View file

@ -13,6 +13,12 @@
#include "Music.h"
#include "editor.h"
struct Roomtext
{
int x, y;
std::string text;
};
class mapclass
{
public:

View file

@ -7,12 +7,6 @@
#include <string>
#include <vector>
struct Roomtext
{
int x, y;
std::string text;
};
class otherlevelclass
{
public: