mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 23:05:11 -04:00
f1d8c41c38
* work on d_s_play * some fixes
17 lines
290 B
C++
17 lines
290 B
C++
#ifndef D_MATERIAL_H
|
|
#define D_MATERIAL_H
|
|
|
|
class dMat_ice_c {
|
|
public:
|
|
void play();
|
|
};
|
|
|
|
class dMat_control_c {
|
|
public:
|
|
static void icePlay() { mIce->play(); }
|
|
static void create(J3DMaterialTable*, J3DAnmTextureSRTKey*);
|
|
|
|
static dMat_ice_c* mIce;
|
|
};
|
|
|
|
#endif /* D_MATERIAL_H */ |