Newer
Older
Tardis / lang / types.h
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 John Watts and the LuminaSensum contributors

#ifndef TYPES_H
#define TYPES_H

// Opaque type for an object
struct object;
typedef struct object *Object;

// Opaque type for an object list
struct object_list;
typedef struct object_list *ObjectList;

// Opaque type for the VM state
struct vm_state;
typedef struct vm_state *VmState;

#endif