fix: Deletes unused serialization files (#1848)

This commit is contained in:
Kamron Batman 2024-06-26 07:57:00 -07:00 committed by GitHub
parent 46c7c77b41
commit 5d18a194b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 48 deletions

View file

@ -1,25 +0,0 @@
/*************************************************************************
* ModernUO *
* Copyright 2019-2023 - ModernUO Development Team *
* Email: hi@modernuo.com *
* File: EntityTypeIndex.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/>. *
*************************************************************************/
namespace Server;
public readonly struct EntityTypeIndex : IIndexInfo<Serial>
{
public string TypeName { get; }
public EntityTypeIndex(string typeName) => TypeName = typeName;
public Serial CreateIndex(uint num) => (Serial)num;
}

View file

@ -1,23 +0,0 @@
/*************************************************************************
* ModernUO *
* Copyright 2019-2023 - ModernUO Development Team *
* Email: hi@modernuo.com *
* File: EntityTypeIndex.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/>. *
*************************************************************************/
namespace Server;
public interface IIndexInfo<I>
{
I CreateIndex(uint num);
string TypeName { get; }
}