rj-action-library/Runtime/App/Settings/AppSetting.cs

17 lines
354 B
C#
Raw Permalink Normal View History

2025-08-31 06:05:39 +00:00
using Godot;
using System.Collections.Generic;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class AppSetting:Resource
{
public LocaleText GetName(){ return null; }
public LocaleText GetInfo(){ return null; }
public string Serialize(){ return null; }
public void SetFromSerialized( string serializedValue ){}
}
}