mod/userconfig/forge_phone.hpp
Jacob Schmidt c24b967e2a
All checks were successful
Build / Build (push) Successful in 54s
Updated naming convention to use FORGE
2025-01-01 21:35:44 -06:00

22 lines
636 B
C++

class FORGE_CfgPhones {
class themes {
class bg_dark01 {
themeName = "Dark"; // Name of theme
themeBackground = "\@forge\userconfig\backgrounds\bgdark_01.paa"; // Must be file type: PAA and size: 512x1024
};
class bg_dark02 {
themeName = "Alt Dark";
themeBackground = "\@forge\userconfig\backgrounds\bgdark_02.paa";
};
class bg_light01 {
themeName = "Light";
themeBackground = "\@forge\userconfig\backgrounds\bglight_01.paa";
};
class bg_light02 {
themeName = "Alt Light";
themeBackground = "\@forge\userconfig\backgrounds\bglight_02.paa";
};
};
class notifications {};
class ringtones {};
};