20 lines
411 B
C#
20 lines
411 B
C#
using System;
|
|
using System.Linq;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using Microsoft.Xna.Framework.Input;
|
|
using System.Collections.Generic;
|
|
using Lidgren.Network;
|
|
using Barotrauma.Items.Components;
|
|
|
|
namespace Barotrauma.Networking
|
|
{
|
|
abstract partial class NetworkMember
|
|
{
|
|
private void InitProjSpecific()
|
|
{
|
|
//do nothing
|
|
}
|
|
}
|
|
}
|