12 lines
377 B
C
12 lines
377 B
C
|
#pragma once
|
||
|
#include "skse64/PapyrusNativeFunctions.h"
|
||
|
#include "skse64/GameReferences.h"
|
||
|
#include "skse64/GameObjects.h"
|
||
|
|
||
|
namespace CreatePotion
|
||
|
{
|
||
|
AlchemyItem* createPotion(AlchemyItem* toCopy, VMArray<EffectSetting*> effects, VMArray<float> magnitudes, VMArray<UInt32> areas, VMArray<UInt32> durations, UInt32 arraySize);
|
||
|
|
||
|
bool RegisterFuncs(VMClassRegistry* registry);
|
||
|
}
|