Plasma Engine  2.0
Loading...
Searching...
No Matches
ProjectPreferences.h
1#pragma once
2
3#include <EditorFramework/Preferences/Preferences.h>
4#include <Foundation/Strings/String.h>
5
7class PL_EDITORFRAMEWORK_DLL plProjectPreferencesUser : public plPreferences
8{
9 PL_ADD_DYNAMIC_REFLECTION(plProjectPreferencesUser, plPreferences);
10
11public:
13
14 // which apps to launch as external 'Players' (other than plPlayer.exe)
15 plDynamicArray<plString> m_PlayerApps;
16
17 // the directory where the project should be exported to
18 plString m_sExportFolder;
19};
Definition DynamicArray.h:81
Base class for all preferences.
Definition Preferences.h:17
Stores project specific preferences for the current user.
Definition ProjectPreferences.h:8