mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 06:39:18 +02:00
14 lines
349 B
C++
14 lines
349 B
C++
#include "stdafx.h"
|
|
#include "stars.h"
|
|
#include "Globals.h"
|
|
#include "MdlMngr.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
// cStars -- simple starfield model, simulating appearance of starry sky
|
|
|
|
void
|
|
cStars::init() {
|
|
|
|
m_stars = TModelsManager::GetModel( "models/skydome_stars.t3d", false );
|
|
}
|