luau/tests/ClassFixture.h

18 lines
312 B
C
Raw Normal View History

2022-12-02 18:46:05 +08:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
2023-02-17 22:53:37 +08:00
#pragma once
2022-12-02 18:46:05 +08:00
#include "Fixture.h"
namespace Luau
{
struct ClassFixture : BuiltinsFixture
{
ClassFixture();
2023-10-21 04:36:26 +08:00
TypeId vector2Type;
TypeId vector2InstanceType;
2022-12-02 18:46:05 +08:00
};
} // namespace Luau