Worms4Editor/LibXom/Data/XomFileComponent.cs

24 lines
448 B
C#
Raw Normal View History

2023-01-07 09:36:13 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibXom.Data
{
public class XomFileComponent
{
internal Guid guid = Guid.NewGuid();
internal XomFile fileBelongs;
public virtual int Id { get; }
internal string uuid
{
get
{
return guid.ToString();
}
}
}
}