mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-13 11:27:42 +01:00
Load services asynchronously whenever possible (#893)
This commit is contained in:
parent
fba8c7163c
commit
8e7f370ddd
66 changed files with 959 additions and 899 deletions
|
|
@ -12,6 +12,7 @@ namespace Dalamud.Interface
|
|||
/// </summary>
|
||||
[PluginInterface]
|
||||
[InterfaceVersion("1.0")]
|
||||
[ServiceManager.BlockingEarlyLoadedService]
|
||||
public class TitleScreenMenu
|
||||
{
|
||||
/// <summary>
|
||||
|
|
@ -21,6 +22,11 @@ namespace Dalamud.Interface
|
|||
|
||||
private readonly List<TitleScreenMenuEntry> entries = new();
|
||||
|
||||
[ServiceManager.ServiceConstructor]
|
||||
private TitleScreenMenu()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the list of entries in the title screen menu.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue