Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Save System/Persistance Classes/persistanceWeaponAttachmentListBySaveSlotInfo.cs
Robii Aragon 779f2c8b20 add ckg
plantilla base para movimiento básico
2026-02-05 05:07:55 -08:00

32 lines
937 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class persistanceWeaponAttachmentListBySaveSlotInfo
{
public int saveNumber;
public List<persistanceAttachmentWeaponListByPlayerInfo> playerAttachmentWeaponList = new List<persistanceAttachmentWeaponListByPlayerInfo> ();
}
[System.Serializable]
public class persistanceAttachmentWeaponListByPlayerInfo
{
public int playerID;
public List<persistanceAttachmentWeaponPlaceInfo> attachmentWeaponPlaceList = new List<persistanceAttachmentWeaponPlaceInfo> ();
}
[System.Serializable]
public class persistanceAttachmentWeaponPlaceInfo
{
public bool attachmentPlaceEnabled;
public List<persistanceAttachmentWeaponInfo> attachmentWeaponList = new List<persistanceAttachmentWeaponInfo> ();
}
[System.Serializable]
public class persistanceAttachmentWeaponInfo
{
public bool attachmentEnabled;
public bool attachmentActive;
}