mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
15 lines
384 B
C#
15 lines
384 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class CloObjectEffect
|
|
{
|
|
public uint Index { get; set; }
|
|
public uint ModelId { get; set; }
|
|
public List<CloTextureEffect> CloTextureEffects { get; set; } = new List<CloTextureEffect>();
|
|
}
|
|
}
|