POLPOX 779 Posted April 10, 2018 class RscBackground; class RscTitles { class SomeTitle { class controls { class SomeBG: RscBackground { colorBackground[] = {1,1,1,1} ; }; }; }; }; I thought this'll inherit resource options properly but don't. (RscBackground is not defined) How can I define some resources correctly in description.ext? Share this post Link to post Share on other sites
gc8 977 Posted April 10, 2018 You have to go to the gui editor then press Ctrl + P this will Export parent classes. then just paste the classes to your description.ext. Or make a header file paste into that and use #include in description.ext to include the file. Share this post Link to post Share on other sites
POLPOX 779 Posted April 10, 2018 Well, if it is the only way to do it... I'm working on it. Thank you @gc8. Share this post Link to post Share on other sites