14 lines
290 B
C
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);
|
|
} |