You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
19 lines
288 B
C#
19 lines
288 B
C#
using System;
|
|
|
|
namespace Dpr.Battle.View
|
|
{
|
|
public enum WaitCameraTarget : byte
|
|
{
|
|
None,
|
|
Field,
|
|
PokeNear1,
|
|
PokeNear2,
|
|
PokeFar1,
|
|
PokeFar2,
|
|
TrainerNear1,
|
|
TrainerNear2,
|
|
TrainerFar1,
|
|
TrainerFar2
|
|
}
|
|
}
|