36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
// Filename: config_distributed.h
|
|
// Created by: drose (19May04)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef CONFIG_DISTRIBUTED_H
|
|
#define CONFIG_DISTRIBUTED_H
|
|
|
|
#include "directbase.h"
|
|
#include "notifyCategoryProxy.h"
|
|
#include "dconfig.h"
|
|
#include "configVariableInt.h"
|
|
#include "configVariableDouble.h"
|
|
#include "configVariableBool.h"
|
|
|
|
NotifyCategoryDecl(distributed, EXPCL_DIRECT, EXPTP_DIRECT);
|
|
|
|
extern ConfigVariableInt game_server_timeout_ms;
|
|
extern ConfigVariableDouble min_lag;
|
|
extern ConfigVariableDouble max_lag;
|
|
extern ConfigVariableBool handle_datagrams_internally;
|
|
|
|
extern EXPCL_DIRECT void init_libdistributed();
|
|
|
|
#endif
|
|
|