19 lines
449 B
C
19 lines
449 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include <dawn/dawn.h>
|
|
#include "../../debug/log.h"
|
|
#include "../render/look.h"
|
|
#include "action.h"
|
|
#include "ai.h"
|
|
|
|
pokeraction_t actionFlop();
|
|
|
|
void actionFlopInit(int32_t index, void *data);
|
|
void actionFlopUpdate(int32_t index, void *data);
|
|
void actionFlopDispose(int32_t index, void *data); |