mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 02:40:53 +01:00
14 lines
272 B
C
14 lines
272 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Forms/TESForm.h>
|
||
|
|
|
||
|
|
#include <Components/TESFullName.h>
|
||
|
|
|
||
|
|
struct TESWorldSpace : TESForm
|
||
|
|
{
|
||
|
|
// aX and aY are coordinates, not positions
|
||
|
|
TESObjectCELL* LoadCell(int32_t aXCoordinate, int32_t aYCoordinate) noexcept;
|
||
|
|
|
||
|
|
TESFullName fullName;
|
||
|
|
};
|