mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Rename edentities to CustomEntity
That's what it is - it's an entity in a custom level. Not something to do with the editor, necessarily. Like before, the name of the XML element will remain the same.
This commit is contained in:
@@ -7,7 +7,8 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
class edentities{
|
||||
class CustomEntity
|
||||
{
|
||||
public:
|
||||
int x, y, t;
|
||||
//parameters
|
||||
@@ -60,7 +61,7 @@ struct LevelMetaData
|
||||
};
|
||||
|
||||
|
||||
extern std::vector<edentities> edentity;
|
||||
extern std::vector<CustomEntity> edentity;
|
||||
|
||||
class EditorData
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user