blob: 811d05ad21ba289d085708cb4b7dd4d23786ddff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import type { Component } from "./component";
export enum EntityType {
LASER = "LASER",
}
export interface Entity {
entity_type: EntityType;
id: string;
components: Record<string, Component>;
}
|