Files
2026-02-21 16:45:37 +08:00

16 lines
323 B
C#

using System.Collections.Generic;
namespace rail
{
public interface IRailScreenshot : IRailComponent
{
bool SetLocation(string location);
bool SetUsers(List<RailID> users);
bool AssociatePublishedFiles(List<SpaceWorkID> work_files);
RailResult AsyncPublishScreenshot(string work_name, string user_data);
}
}