10 lines
128 B
PHP
10 lines
128 B
PHP
<?php
|
|
|
|
namespace timer\action\structure;
|
|
|
|
class eActionState {
|
|
const STOP = 1;
|
|
const PLAY = 2;
|
|
const PAUSE = 3;
|
|
}
|