﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Netted : MonoBehaviour
{
    // Start is called before the first frame update
    NetWorkModule net;
    void Start()
    {
        net = NetWorkModule.Current;
    }

    // Update is called once per frame
    void Update()
    {
        if (net == null) net = NetWorkModule.Current;
    }
}
