Files
Net.Project.B/Src/Cosmetics/ICosmeticsService.cs

37 lines
635 B
C#
Raw Normal View History

2025-02-24 23:02:49 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.Modification;
using Cysharp.Threading.Tasks;
namespace Net.Project.B.Cosmetics
{
public interface ICosmeticsClass
{
}
[Serializable]
public struct CosmeticsHand:ICosmeticsClass
{
}
[Serializable]
public struct CosmeticsModel:ICosmeticsClass
{
}
[Serializable]
public struct CosmeticsHat:ICosmeticsClass
{
}
public class CosmeticsCustomizeComponent
{
public virtual HashSet<int> ComponentIds { get; set; } = new();
}
}