mirror of
https://github.com/scummvm/scummvm-web.git
synced 2026-05-21 05:40:47 +00:00
20 lines
436 B
PHP
20 lines
436 B
PHP
<?php
|
|
|
|
namespace ScummVM\OrmObjects;
|
|
|
|
use ScummVM\OrmObjects\Base\GameDownload as BaseGameDownload;
|
|
|
|
/**
|
|
* Skeleton subclass for representing a row from the 'game_downloads' table.
|
|
*
|
|
*
|
|
*
|
|
* You should add additional methods to this class to meet the
|
|
* application requirements. This class will only be generated as
|
|
* long as it does not already exist in the output directory.
|
|
*/
|
|
class GameDownload extends BaseGameDownload
|
|
{
|
|
|
|
}
|