using System;
using Woodpecker.Net.Game;
using Woodpecker.Game.Users;
namespace Woodpecker.Sessions
{
///
/// Represents a session of a Habbo.
///
public class userSession
{
#region Declares
///
/// The database ID of this user.
///
internal int userID;
///
/// The userInfo object of this user.
///
internal userInfo User;
///
/// The gameConnection object of this session.
///
private gameConnection Connection;
#endregion
#region Properties
#endregion
#region Constructors
public userSession(int userID, gameConnection Connection)
{
this.userID = userID;
this.Connection = Connection;
}
#endregion
#region Methods
#endregion
}
}