ace/Source/ACE.Entity/Models/PropertiesAttribute.cs
Mag-nus f8ceb00f5b
Step 1. Add new adapter classes and models (#2691)
All classes and objects added are in new namespaces.

This add has 0 interraction on existing ACE code.

This sets the groundwork for Step 2. Moving World DB caching to the new models
2020-02-14 08:10:33 -06:00

23 lines
515 B
C#

using System;
namespace ACE.Entity.Models
{
public class PropertiesAttribute
{
public uint InitLevel { get; set; }
public uint LevelFromCP { get; set; }
public uint CPSpent { get; set; }
public PropertiesAttribute Clone()
{
var result = new PropertiesAttribute
{
InitLevel = InitLevel,
LevelFromCP = LevelFromCP,
CPSpent = CPSpent,
};
return result;
}
}
}