Dawn/src/world/entity/entity.c
2021-04-22 13:55:34 +10:00

14 lines
290 B
C

/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "entity.h"
entitystate_t ENTITY_STATE;
void entityStateInit() {
memset(ENTITY_STATE.entities, NULL, sizeof(entity_t) * ENTITY_COUNT);
}