37 lines
635 B
C#
37 lines
635 B
C#
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();
|
|
}
|
|
}
|