entity_t and brush_t now converted to idEditorEntity and idEditorBrush

This commit is contained in:
Justin Marshall
2026-05-24 11:33:16 -07:00
parent d6d01e1faf
commit 3242531044
41 changed files with 1598 additions and 1540 deletions
+3 -3
View File
@@ -28,7 +28,7 @@ public:
dict = _dict;
}
void SetEditEntity(entity_t* ent) {
void SetEditEntity(idEditorEntity* ent) {
editEntity = ent;
}
@@ -40,7 +40,7 @@ public:
static CPreviewDlg* ShowSoundChooser();
static CPreviewDlg* ShowMaterialChooser();
static CPreviewDlg* ShowParticleChooser();
static CPreviewDlg* ShowSkinChooser(entity_t* ent);
static CPreviewDlg* ShowSkinChooser(idEditorEntity* ent);
void SetKeyVal(const char* key, const char* val) {
editKey.SetWindowText(key);
@@ -79,7 +79,7 @@ public:
void UpdateFromAnimationFrame(bool updateKeyValueDisplay = true);
private:
entity_t* editEntity;
idEditorEntity* editEntity;
bool multipleEntities;
CPropertyList listKeyVal;