Liberi
An exergame built for kids with CP!
GameMessage.cs
1 using UnityEngine;
2 using System;
3 using System.Text;
4 using System.Collections;
5 using System.Collections.Generic;
6 using System.Linq;
7 using System.IO;
8 using Lidgren.Network;
9 
14 public class GameMessage : NetBuffer
15 {
19  public void FinishReading ()
20  {
21  Position = 0;
22  }
23 }
void FinishReading()
Set the read / write position to 0 so the next user won't run over.
Definition: GameMessage.cs:19
A class for serializing game data into a stream for propagation between objects and peers...
Definition: GameMessage.cs:14