14 lines
213 B
C++
14 lines
213 B
C++
/**
|
|
* @file trn.h
|
|
*
|
|
* Contains most of trn logic
|
|
*/
|
|
#pragma once
|
|
|
|
namespace devilution {
|
|
|
|
uint8_t *GetInfravisionTRN();
|
|
uint8_t *GetStoneTRN();
|
|
uint8_t *GetPauseTRN();
|
|
|
|
} // namespace devilution
|