mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 10:20:26 +01:00
19 lines
363 B
C
19 lines
363 B
C
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_CREDITS_H
|
|
#define SE_INCL_CREDITS_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
// turn credits on
|
|
void Credits_On(INDEX iType);
|
|
// turn credits off
|
|
void Credits_Off(void);
|
|
// render credits to given drawport
|
|
FLOAT Credits_Render(CDrawPort *pdp);
|
|
|
|
|
|
#endif /* include-once check. */
|
|
|