projectEli/Assets/NeoFPS/Core/NeoSaveGames/Serialization/INeoSerializableComponent.cs

12 lines
368 B
C#
Raw Normal View History

2022-11-07 01:28:33 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace NeoSaveGames.Serialization
{
public interface INeoSerializableComponent
{
void WriteProperties(INeoSerializer writer, NeoSerializedGameObject nsgo, SaveMode saveMode);
void ReadProperties(INeoDeserializer reader, NeoSerializedGameObject nsgo);
}
}