mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
8 lines
102 B
PHP
8 lines
102 B
PHP
|
<?php
|
||
|
|
||
|
abstract class DivinerRenderer {
|
||
|
|
||
|
abstract public function renderAtom(DivinerAtom $atom);
|
||
|
|
||
|
}
|