2025-05-13 19:22:01 +08:00

18 lines
397 B
C#

using System.Collections.Generic;
using System.ComponentModel;
using Godot;
using Godot.Bridge;
using Godot.NativeInterop;
[GlobalClass]
[ScriptPath("res://Scripts/Resources/TalkTopics.cs")]
public partial class TalkTopics : Resource
{
[Export(PropertyHint.None, "")]
public SaveFile.Flags replaceFlag = SaveFile.Flags.None;
[Export(PropertyHint.None, "")]
public int replaceWithOnFlag;
}