18 lines
409 B
C
18 lines
409 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 "action.h"
|
|
#include "ai.h"
|
|
|
|
pokeraction_t actionDeal();
|
|
|
|
void actionDealInit(int32_t i, void *data);
|
|
void actionDealUpdate(int32_t i, void *data);
|
|
void actionDealDispose(int32_t i, void *data); |