mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
13 lines
272 B
C
13 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;
|
|
};
|