mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
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
25 lines
616 B
C#
25 lines
616 B
C#
using System;
|
|
|
|
namespace ACE.Entity.Models
|
|
{
|
|
public class PropertiesAttribute2nd
|
|
{
|
|
public uint InitLevel { get; set; }
|
|
public uint LevelFromCP { get; set; }
|
|
public uint CPSpent { get; set; }
|
|
public uint CurrentLevel { get; set; }
|
|
|
|
public PropertiesAttribute2nd Clone()
|
|
{
|
|
var result = new PropertiesAttribute2nd
|
|
{
|
|
InitLevel = InitLevel,
|
|
LevelFromCP = LevelFromCP,
|
|
CPSpent = CPSpent,
|
|
CurrentLevel = CurrentLevel,
|
|
};
|
|
|
|
return result;
|
|
}
|
|
}
|
|
}
|