mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
14 lines
342 B
C++
14 lines
342 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( "skydome_stars.t3d", false );
|
|
}
|