custom-chatbot / data /SkipCommand.cs
fastx's picture
Upload 84 files
ac55997
raw
history blame
359 Bytes
using System;
using Photon.Deterministic;
namespace Quantum
{
[Serializable]
public struct SkipCommandData
{
// game-specific command data here
}
public class SkipCommand : DeterministicCommand
{
public SkipCommandData Data;
public override void Serialize(BitStream stream)
{
// serialize command data here
}
}
}