blob: e842b13b23151396651c12c42e321cc369de7994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "d/t/d_t_tackle.h"
SPECIAL_ACTOR_PROFILE(TACKLE_TAG, dTgTackle_c, fProfile::TACKLE_TAG, 0x0241, 0, 0);
int dTgTackle_c::create() {
return SUCCEEDED;
}
int dTgTackle_c::doDelete() {
return SUCCEEDED;
}
int dTgTackle_c::actorExecute() {
return SUCCEEDED;
}
int dTgTackle_c::draw() {
return SUCCEEDED;
}
|