19 lines
392 B
C
19 lines
392 B
C
|
// Copyright (c) 2011-2014 Sundog Software, LLC. All rights reserved worldwide.
|
||
|
|
||
|
/** \file Triton.h
|
||
|
\brief A convenience header that includes the main public headers for Triton.
|
||
|
*/
|
||
|
|
||
|
#ifndef TRITON_H
|
||
|
#define TRITON_H
|
||
|
|
||
|
#include "Environment.h"
|
||
|
#include "Ocean.h"
|
||
|
#include "WakeGenerator.h"
|
||
|
#include "RotorWash.h"
|
||
|
#include "Impact.h"
|
||
|
#include "TidalStreamWake.h"
|
||
|
#include "Camera.h"
|
||
|
|
||
|
#endif
|