blob: 13dbb8fb09ae46775d2b554eee12f2ce3f59ba49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
class CAnimViewer {
public:
static int animTxdSlot;
static CEntity *pTarget;
static void Initialise();
static void Render();
static void Shutdown();
static void Update();
};
|