MCPcopy Create free account
hub / github.com/EasyRPG/Player / MakeActor

Function MakeActor

tests/game_actor.cpp:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4template <typename... Args>
5static Game_Actor MakeActor(int id, Args... args) {
6 MakeDBActor(id, args...);
7 return Game_Actor(id);
8}
9
10static auto AllWeaponTypes() {
11 return std::array<Game_Battler::Weapon,4>{{ Game_Battler::WeaponAll, Game_Battler::WeaponNone, Game_Battler::WeaponPrimary, Game_Battler::WeaponSecondary }};

Callers 3

game_actor.cppFile · 0.70
testLimitsFunction · 0.70
MakeActorAttributeFunction · 0.70

Calls 2

MakeDBActorFunction · 0.85
Game_ActorClass · 0.50

Tested by

no test coverage detected