mirror of
https://bitbucket.org/seefoe/src.git
synced 2026-08-02 03:15:57 -04:00
25 lines
565 B
C++
Executable File
25 lines
565 B
C++
Executable File
// ======================================================================
|
|
//
|
|
// ServerPathfinding.h
|
|
// Copyright 2001 Sony Online Entertainment Inc.
|
|
// All Rights Reserved.
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_ServerPathfinding_H
|
|
#define INCLUDED_ServerPathfinding_H
|
|
|
|
// ======================================================================
|
|
|
|
class ServerPathfinding
|
|
{
|
|
public:
|
|
|
|
static void update ( float timeBudget );
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|
|
|