ace/Source/ACE.DatLoader/Entity/CloObjectEffect.cs
Ty Conner c4a3da0b10 Full reset of repo (#327)
* Full Wipe

* Restored git settings

* Restored Root folder

* Restored Source & Database
2017-05-05 10:26:35 -04:00

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>();
}
}