20 lines
360 B
Lua
20 lines
360 B
Lua
-- @include ../libs/constants.txt
|
|
require("../libs/constants.txt")
|
|
|
|
SteeringController = class("SteeringController")
|
|
|
|
function SteeringController:initialize(base)
|
|
self.seat = NULL_ENTITY
|
|
self.driver = NULL_ENTITY
|
|
|
|
self.base = base
|
|
end
|
|
|
|
function SteeringController:update()
|
|
|
|
end
|
|
|
|
function SteeringController:setDriver(ply)
|
|
self.driver = ply
|
|
end
|