feat: Adds Next/Prev for future link list support (#1546)
This commit is contained in:
parent
fbd194339a
commit
c2d6578955
6 changed files with 493 additions and 5 deletions
|
|
@ -1,9 +1,24 @@
|
|||
/*************************************************************************
|
||||
* ModernUO *
|
||||
* Copyright 2019-2023 - ModernUO Development Team *
|
||||
* Email: hi@modernuo.com *
|
||||
* File: BaseMulti.cs *
|
||||
* *
|
||||
* This program is free software: you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation, either version 3 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
* You should have received a copy of the GNU General Public License *
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
||||
*************************************************************************/
|
||||
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
namespace Server.Items;
|
||||
|
||||
public abstract class BaseMulti : Item
|
||||
public abstract partial class BaseMulti : Item
|
||||
{
|
||||
public BaseMulti(int itemID) : base(itemID) => Movable = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue