Jump to content
POLPOX

Resource define in description.ext?

Recommended Posts

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

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×