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
21 lines
448 B
C#
21 lines
448 B
C#
using System;
|
|
|
|
namespace ACE.Entity.Models
|
|
{
|
|
public class PropertiesBook
|
|
{
|
|
public int MaxNumPages { get; set; }
|
|
public int MaxNumCharsPerPage { get; set; }
|
|
|
|
public PropertiesBook Clone()
|
|
{
|
|
var result = new PropertiesBook
|
|
{
|
|
MaxNumPages = MaxNumPages,
|
|
MaxNumCharsPerPage = MaxNumCharsPerPage,
|
|
};
|
|
|
|
return result;
|
|
}
|
|
}
|
|
}
|