23 lines
383 B
C#
23 lines
383 B
C#
|
|
using Godot;
|
|
using Rokojori;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Rokojori;
|
|
|
|
[Tool]
|
|
[GlobalClass]
|
|
public partial class UIAppSettingsGenerator:Resource
|
|
{
|
|
[Export]
|
|
public UIAppSettingsBackgroundGenerator background;
|
|
|
|
[Export]
|
|
public UIAppSettingsHeaderGenerator header;
|
|
|
|
[Export]
|
|
public UIAppSettingsCategoryPageGenerator catergoryPage;
|
|
|
|
}
|