Spaces:
Runtime error
Runtime error
File size: 513 Bytes
ac55997 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
using Photon.Deterministic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Quantum
{
partial class RuntimePlayer
{
public AssetRefEntityPrototype SelectedCharacter;
public string PlayerName;
public bool ForceAI;
public int TeamIndex;
partial void SerializeUserData(BitStream stream)
{
stream.Serialize(ref SelectedCharacter);
stream.Serialize(ref PlayerName);
stream.Serialize(ref ForceAI);
stream.Serialize(ref TeamIndex);
}
}
}
|