11 lines
151 B
PHP
11 lines
151 B
PHP
|
<?php
|
||
|
interface Tieable {
|
||
|
function isTiedCult();
|
||
|
|
||
|
function isTiedCiv();
|
||
|
|
||
|
function getCurrentCiv();
|
||
|
|
||
|
function getCurrentCult();
|
||
|
}
|
||
|
?>
|